Monday, 9 May 2016

scanf using in c language

#include <stdio.h>
 
main()
{
   int no;
 
   printf("Enter number\n");
   scanf("%d",&no);
 
   printf("Number %d\n", no);
 
   return 0;
}
 
Output 
Enter Number:10
Number 10 

No comments:

Post a Comment