I\'m making a program to make question forms. The questions are saved to a file, and I want to read them and store them in memory (I use a vector for this). My questions have th
Look at this and use:
ss >> std::ws; getline(ss, question);