Anbu scanf() Function
scanf() function is used to read character, string, numeric data from keyboard.
void main() { int i; clrscr(); printf("Enter The Number\n"); scanf("%d",&i); printf("The Input Value Is %d\n",i) getch(); }
http://christineduvivier.com/de-stress-college/ October 11, 2015 C Leave a comment 1,420 Views
scanf() function is used to read character, string, numeric data from keyboard.
void main() { int i; clrscr(); printf("Enter The Number\n"); scanf("%d",&i); printf("The Input Value Is %d\n",i) getch(); }
Loop in C Language A loop statement allows us to execute a statement or …