#include <stdio.h>
#include <string.h> // strlen()함수 호출
int main(void){
char str[1000];
scanf("%s",str);
printf("%d",strlen(str));
}
카테고리 없음
#include <stdio.h>
#include <string.h> // strlen()함수 호출
int main(void){
char str[1000];
scanf("%s",str);
printf("%d",strlen(str));
}