Last active
January 3, 2019 10:10
-
-
Save 1nnOc3nt/8a1e3c7b4344b72a40aacf425a11521f to your computer and use it in GitHub Desktop.
This file contains hidden or 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
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