Created
January 17, 2015 00:51
-
-
Save MrAnno/b45725b00aa41b070eb8 to your computer and use it in GitHub Desktop.
C++ valid termination of program
This file contains 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
#include <stdlib.h> | |
int 1main(int argc, char** argv) | |
{ | |
exit(0); | |
exit(1); | |
exit(); //csak hogy tutira kilépjen | |
return 0; //ez nem tudom mi, de ettol tuti nem lép ki | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
👍