Created
December 7, 2017 07:26
-
-
Save martinomburajr/dd0e3519b83127fa3d2ec5fff76e281b to your computer and use it in GitHub Desktop.
C++ main method
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() { | |
| return 0; | |
| } | |
| //or | |
| int main(int argc, char* argv[]) { | |
| return 0; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment