Rohyoohyun / C

0 stars 0 forks source link

2743 단어길이 재기 #21

Open Rohyoohyun opened 3 months ago

Rohyoohyun commented 3 months ago
#include <stdio.h>
#include <string.h>
int main() {
    char str[101] = {0};
    scanf("%s", str);
    printf("%ld", strlen(str));
    return 0;
}