/n Won't work >.>

Everytime I try to use /n it always displays as "/n"
Example:

1
2
3
4
5
6
7
8
9
#include <iostream>

using namespace std;

int main()
{
   cout << "Hello /n World!";
   return 0;
}


Will instead of doing this:

Hello 
 World!

Will do THIS:

Hello /n World!


Please help!
@legitiment1337

The correct escape code for a newline is '\n'.
I just derped...
Topic archived. No new replies allowed.