First Commit
This commit is contained in:
8
InputAndPrint.c
Normal file
8
InputAndPrint.c
Normal file
@@ -0,0 +1,8 @@
|
||||
// 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);
|
||||
}
|
||||
Reference in New Issue
Block a user