I need to print out the "|" symbol on the screen. But I seem to get this instead of correct symbol:
My code looks like this:
for(int i = 0 ; i <=8; i++)
{
if(i==0)cout << " ";
else cout << i;
cout << "\|";
}
How do I do it? Sorry if this is a stupid question...