Files
C-Projects/InputAndPrint.c
2021-04-25 15:28:50 +05:30

9 lines
241 B
C

// WAP to take input from the keyboard & print the same value on the output screen.
void main() {
int a,b;
printf("Enter the values of a & b\n");
scanf("%d\n%d",&a,&b);
printf("The value of a=%d \nThe value of b=%d",a,b);
}