C Program To Take Input From Users
♣ Try it Out ::
#include<stdio.h>
#include<conio.h>
int main()
{
int num;
printf("Enter an Integer: ");
scanf("%d", &num);
printf("You have entered: %d", num);
getch();
return(0);
}
♣ Output ::
Enter an Integer: 569474 You have entered: 569474
♣ Downloads ::
Comments
Post a Comment