mirror of
https://github.com/hairrrrr/C-CrashCourse.git
synced 2026-04-24 02:41:24 +08:00
2-8
This commit is contained in:
11
C Crash Course/13 String/Prelesson/code/mystrcmp/main.c
Normal file
11
C Crash Course/13 String/Prelesson/code/mystrcmp/main.c
Normal file
@@ -0,0 +1,11 @@
|
||||
|
||||
|
||||
int main() {
|
||||
|
||||
char* str1 = "Hello ";
|
||||
char* str2 = "Hello";
|
||||
|
||||
printf("%d\n", mystrcmp(str1, str2));
|
||||
|
||||
return 0;
|
||||
}
|
||||
Reference in New Issue
Block a user