mirror of
https://github.com/hairrrrr/C-CrashCourse.git
synced 2026-03-23 21:40:58 +08:00
11 lines
116 B
C
11 lines
116 B
C
|
|
|
|
int main() {
|
|
|
|
char* str1 = "Hello ";
|
|
char* str2 = "Hello";
|
|
|
|
printf("%d\n", mystrcmp(str1, str2));
|
|
|
|
return 0;
|
|
} |