c program to take input from user using scanf
- Blogger Comment
- Facebook Comment
Subscribe to:
Post Comments
(
Atom
)
Download Popular software Installers and download Mobile and Android Applications from softwaresetups.com. get best deals on internet like free offers.
#include <stdio.h> main() { int number; printf("Enter an integer\n"); scanf("%d",&number); printf("Integer entered by you is %d\n", number); return 0; }
Output:
Enter a number
10
Number entered by you is 10
0 comments:
Post a Comment