Quote Originally Posted by kempofighter
Code:
std::cout << "Start writing program here!" << endl;
The above code won't compile - std:: is missing in front of endl ... i.e. it should be:
Code:
   std::cout << "Start writing program here!" << std::endl;