#include <stdio.h>
int main()
{
int a;
printf("Enter an integer\n");
scanf("%d", &a);
printf("Integer that you have entered is %d\n", a);
return 0;
}
Output:
Enter an Integer
45
Integer that you have entered is 45
Placement papers|C,C++,JAVA Programming Tutorials|
PROGRAMMING CONCEPTS Designed by PSD Style © 2011 All Rights Reserved.
0 comments:
Post a Comment