C
This commit is contained in:
10
w3school/string.c
Normal file
10
w3school/string.c
Normal file
@ -0,0 +1,10 @@
|
||||
#include <stdio.h>
|
||||
#include <string.h>
|
||||
|
||||
int main () {
|
||||
char test[40] = "TESTING";
|
||||
char test2[50] = " WORKING";
|
||||
char test3[50] = "TESTING";
|
||||
printf("%d", strcmp(test, test3));
|
||||
return 0;
|
||||
}
|
Reference in New Issue
Block a user