Skip to content

Instantly share code, notes, and snippets.

@ThePratikSah
Created July 17, 2017 12:53
Show Gist options
  • Save ThePratikSah/810a186d45f86ed580878a1ef84eb7cc to your computer and use it in GitHub Desktop.
Save ThePratikSah/810a186d45f86ed580878a1ef84eb7cc to your computer and use it in GitHub Desktop.
/*
Author: Pratik Sah
Topic: subtraction 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