#include
#include
void main()
{
int a;
clrscr();
printf("Enter any number"); //This is used to display massege.
scanf("%d",&a); //This is used to take value by user.
printf("value of a is %d",a);
//This is used to display value of variable.
getch();
}
No comments:
Post a Comment