do we need to add something after cpp getline? code example
Example: c++ reading string
#include <iostream>
#include <string>
string str;
getline(cin, str);
//str contains line
#include <iostream>
#include <string>
string str;
getline(cin, str);
//str contains line