change structure continued

This commit is contained in:
Wolfgang Hottgenroth
2019-04-30 11:14:25 +00:00
parent 7e1f846dc5
commit e70087427e
37 changed files with 4975 additions and 0 deletions

BIN
sketch/snippet/snippet1 Executable file

Binary file not shown.

12
sketch/snippet/snippet1.c Normal file
View File

@ -0,0 +1,12 @@
#include <stdio.h>
#include <string.h>
int main() {
char text1[15] = "Wolfgang/11";
char text2[15] = "Wolfgang";
if (0 == strncmp(text1, text2, strlen(text2))) {
printf("match\n");
}
}