I wrote this code:
#include <iostream>
#include <string>
using std::string;
int main( void )
{
std::cout.flush();
string portF("PORTOFINO IM SOMMER 2012");
// You have to end this statement with semi colon
std::cout<<portF;
portF.erase(0,5);
portF.insert(3,"IT");
portF.erase(7,3);
portF.insert(13,"SEMESTER");
portF.append("!");
// Similarily here
std::cout<<portF;
return 0;
}
I need to see whats the output but nothing appear in the screen, I think the problem is with the cout: