Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
c で gets を使用する場合は、次のようにします。
int main(void) { char str[100]; while (gets(str)) { printf("%s\n",str); } }
最初に str の長さ (100) を把握してから、gets を使用する必要があります。cで配列の長さを知らずにgetsを使用することは可能ですか?