Created
July 17, 2017 12:53
-
-
Save ThePratikSah/810a186d45f86ed580878a1ef84eb7cc to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
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