문제
풀이
#include <stdio.h>
#include <string.h>
int main(void) {
char word[100];
scanf("%s", word);
printf("%d", strlen(word));
return 0;
}#include <stdio.h>
#include <string.h>
int main(void) {
char word[100];
scanf("%s", word);
printf("%d", strlen(word));
return 0;
}