본문 바로가기

Programming/Tip&Informaion

[c++] 공백까지 입력받기

#include <iostream>
using namespace std;
 
int main(void) {
    char sentence[1000000] = { ' ' };
    cin.getline(sentence, 1000000);
    return 0;
}