Share Info With Your Friends

       
   

c program print integer

This c program first inputs an integer and then prints it. Input is done using scanf function and number is printed on screen using printf.

C programming code

#include<stdio.h>

main()
{
    int a;

    printf("Enter an integer\n");
    scanf("%d", &a);

    printf("Integer that you have entered is %d\n", a);

    return 0;
}
Output:

Previous
Next Post »

Thanks for your feed back we will soon reply you EmoticonEmoticon