Skip to content

Instantly share code, notes, and snippets.

@msuryaprakash
Created December 7, 2015 13:37
Show Gist options
  • Save msuryaprakash/bc52f2822251a58d8e2e to your computer and use it in GitHub Desktop.
Save msuryaprakash/bc52f2822251a58d8e2e to your computer and use it in GitHub Desktop.
#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