Last active
April 27, 2020 10:19
-
-
Save zhangzhishan/892bbe63222860dbaaf2f31654fe32c5 to your computer and use it in GitHub Desktop.
C++ related code #cpp
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
#pragma warning(disable: 4996) |
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
int main(int argc, char *argv[]) | |
{ | |
if (argc < 2) | |
{ | |
} | |
else | |
{ | |
if (strcmp(argv[1], "") == 0) | |
{ | |
} | |
} | |
return 0; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment