Skip to content

Instantly share code, notes, and snippets.

@btechmag
Created April 15, 2021 10:59
Show Gist options
  • Save btechmag/2ae2dc0953d3bf9e6fe10c5029ee9dc0 to your computer and use it in GitHub Desktop.
Save btechmag/2ae2dc0953d3bf9e6fe10c5029ee9dc0 to your computer and use it in GitHub Desktop.
Simple C program to add two numbers
#include<stdio.h>
main()
{
printf("Addition of 6 and 9 is %d", 6 + 9);
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment