#include <stdio.h> #include <string.h> int main(int argc, char *argv[]) { if( strcmp(argv[1], "test") ) { printf("Incorrect password\n"); } else { printf("Correct password\n"); } return 0; }
#include <stdio.h> #include <string.h> int main(int argc, char *argv[]) { char a[]="test"; if( strcmp(argv[1], a) ) { printf("Incorrect password\n"); } else { printf("Correct password\n"); } return 0; }
[培训]科锐逆向工程师培训第53期2025年7月8日开班!
char *a = "text";