Mega Code Archive

 
Categories / C++ Tutorial / Development
 

Use the n code to generate a new line

#include <iostream>  using namespace std;    int main()  {    cout << "one\n";    cout << "two\n";    cout << "three";    cout << "four";      return 0;  } one two threefour"