Can someone explain to me what is wide character string and how to use them with examples. For example:
std::cout<<L"\115";
Why do I get 0x100000f90 as output instead of M when I just use
std::cout<<"\115";
Can someone explain to me what is wide character string and how to use them with examples. For example:
std::cout<<L"\115";
Why do I get 0x100000f90 as output instead of M when I just use
std::cout<<"\115";
To answer the second part of your question if you want to output wide characters then you need to use std::wcout