Back To C Basic Index
// program to input two numbers or integers and display their values #include
#include
void main() { clrscr(); int a,b; printf("enter value for a"); scanf("%d",&a); printf("enter value for b"); scanf("%d",&b); printf("value of a is %d ",a); printf("value of b is %d ",b); getch(); }