MIPI_BaseC_WebinarFRTK/09_Lecture09/02_strlen_p15.c

10 lines
186 B
C
Raw Normal View History

2024-11-13 09:22:28 +03:00
#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;
}