#include <stdio.h>
#include <string.h>
int main(void)
{
char str[] = "C언어";
printf("이 문자열의 길이는 %d입니다.\n", strlen(str));
return 0;
}