#include #include int main(void) { char str[]="Hello"; int l; l = strlen(str); printf("Hello の長さは%dです。\n", l); return 0; }