Back To C Basic Index
// program to input an integer (or number) and display its value #include
#include
void main() { clrscr(); int a; printf("enter value for a"); scanf("%d",&a); printf("%d",a); getch(); }