Skip to content

Instantly share code, notes, and snippets.

@1nnOc3nt
Last active January 3, 2019 10:10
Show Gist options
  • Save 1nnOc3nt/8a1e3c7b4344b72a40aacf425a11521f to your computer and use it in GitHub Desktop.
Save 1nnOc3nt/8a1e3c7b4344b72a40aacf425a11521f to your computer and use it in GitHub Desktop.
int main(int argc, char const *argv[])
{
printf("Hello World!\nThis is pi number: %2f", pi); //This is a comment
return 0;
}
------------------------------------------------------------------------------------------------
# 1 "hello.c"
int main(int argc, char const *argv[])
{
printf("Hello World!\nThis is pi number: %2f", 3.14);
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment