- 締切済み
やってみてください
文字列を入力させ、入力した文字列の長さを出力させるプログラムを作成せよ。 if switch for while do-while 配列 をなるべく使う。 <実行結果> 文字列を入力してください society Length of "society" is 7
- みんなの回答 (2)
- 専門家の回答
みんなの回答
noname#245945
回答No.2
ご参考に。 #include <stdio.h> #include <string.h> #define BUF_SIZE 1024 int main(void) { char str[1024]; printf("input a str.\n"); scanf("%s", str); printf("Length of \"%s\" is %d\n", str, strlen(str)); return 0; }
- jacta
- ベストアンサー率26% (845/3158)
回答No.1
> 入力した文字列の長さを 文字列の長さとは?