본문 바로가기

카테고리 없음

2743_단어길이재기

#include <stdio.h>
#include <string.h>  // strlen()함수 호출

int main(void){
    char str[1000];  
    scanf("%s",str);
    printf("%d",strlen(str));
}