Psst.. new poll here.
Psst.. new forums here.
Microsoft is blocking us again (TY IP Reputation!) so just use oauth login instead. :)
Paste
Pasted as C++ by dont ( 17 years ago )
dont@dont ~ Â $ cat test.cpp
#include <iostream>
Â
int main()
{
 std::cout << "Hello char" << std::endl;
 std::wcout <<  L"Hello WCHAR" << std::endl ;
Â
 return 0;
}
dont@dont ~ Â $ g++ -o res test.cpp
dont@dont ~ Â $ ./res
Hello char
Hello WCHAR
dont@dont ~ Â $ cat test.cpp
#include <iostream>
Â
int main()
{
 std::wcout <<  L"Hello WCHAR" << std::endl ;
 std::cout << "Hello char" << std::endl;
Â
 return 0;
}
dont@dont ~ Â $ g++ -o res test.cpp
dont@dont ~ Â $ ./res
Hello WCHAR
Revise this Paste
Parent: 7089
Children: 7091