First Commit

This commit is contained in:
2021-04-25 15:28:50 +05:30
commit c3dbda79c4
22 changed files with 138 additions and 0 deletions

8
InputAndPrint.c Normal file
View 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);
}