Skip to content

pratikshya99/research

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 

Repository files navigation

WAP to add two numbers in C #include<stdio.h>

int main () { int x, y;

printf("Enter a number"); scanf("%d", &x); printf("Enter another number"); scanf("%d", &y);

// displaying sum
printf("The sum is ", x+y);

return 0; }