Skip to content

Instantly share code, notes, and snippets.

@ThePratikSah
Created July 17, 2017 12:51
Show Gist options
  • Save ThePratikSah/fe18298ff93a5c9f519b89cc374c5cb9 to your computer and use it in GitHub Desktop.
Save ThePratikSah/fe18298ff93a5c9f519b89cc374c5cb9 to your computer and use it in GitHub Desktop.
/*
Author: Pratik Sah
Topic: Addition of two numbers
*/
main() {
int a,b,c;
printf("Enter any two numbers:\n");
scanf("%d%d", &a, &b);
c=a+b;
printf("%d", c);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment