Created
December 7, 2015 13:37
-
-
Save msuryaprakash/bc52f2822251a58d8e2e to your computer and use it in GitHub Desktop.
This file contains 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
#include<stdio.h> | |
main() | |
{ | |
int a = 1, b = 2; | |
/* Storing result of addition in variable a */ | |
a = a + b; | |
printf("Addtion of two numbers= %d\n", a); | |
return 0; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment