This commit is contained in:
2024-03-05 14:19:35 +03:00
parent b199446865
commit a4b587dc41
31 changed files with 0 additions and 0 deletions

10
w3school/string.c Normal file
View 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;
}