Code for getting multiple words in a string from user

前端 未结 5 373
独厮守ぢ
独厮守ぢ 2021-01-20 14:04

Actually i want the user to enter a line of string having multiple words in it for example \"My name is ABC\". What is the C/C++ code for this purp

5条回答
  •  暖寄归人
    2021-01-20 14:43

    Try using something like this snippet:

    string testString;
    
    getline(cin, testString);
    

提交回复
热议问题