MIPI_BaseC_WebinarFRTK/09_Lecture09/02_strlen_p15.c
2024-11-13 09:22:28 +03:00

10 lines
186 B
C

#include <stdio.h>
#include <string.h>
int main(void) {
char st[10] = "hello";
printf("Sizeof = %llu\n", sizeof(st));
printf("Strlen = %llu\n", strlen(st));
return 0;
}