Can´t find out the code for character < in c++
Can´t find out the code for character < and > in c++
@patriic48
1 2
|
cout << "\x28 \x29" << endl;
cout << char(40) << " " << char(41) << " " << endl;
|
These will give you the two characters, < & > in hex and char's
Topic archived. No new replies allowed.