Skip to content

Instantly share code, notes, and snippets.

@YajanaRao
Last active January 31, 2019 05:24
Show Gist options
  • Save YajanaRao/1172987d548808f565629fd00b0bed15 to your computer and use it in GitHub Desktop.
Save YajanaRao/1172987d548808f565629fd00b0bed15 to your computer and use it in GitHub Desktop.
Collection of C Programs
/* starting with hello world */
#include <stdio.h>
int main()
{
printf("Hello World");
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment