9 lines
241 B
C
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);
|
|
}
|