A C Program to learn how to ask for value to user.


#include<stdio.h>
#include<conio.h>
void main()
{
int a;
clrscr();
printf("Enter value of a:");
scanf("%d",&a);
print("The number is:%d",a);
}


Comments