#include <stdio.h> main() { char str[100] } 这里的str[ ]是什么意思 同时在这语句中起到什么作用

2024-11-08 07:31:39
推荐回答(1个)
回答1:

char str[100] ;定义了一个char类型的数组,数组的大小为100.