What is the output of the following c++ code
#include iostream
#include string
#include algorithm
using namespace std;
int main()
{
string s = "G M I T";
s.erase(remove(s.begin(), s.end(), ' ' ), s.end() ) ;
cout s endl;
}

Posted on by