Guest User

Untitled

a guest
Nov 16th, 2018
109
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.26 KB | None | 0 0
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int wmain(int argc, wchar_t* argv[])
  5. {
  6.     wcout << L"Size Of 'bool': " << sizeof(bool) << endl;
  7.     wcout << L"Size Of 'int': " << sizeof(int) << endl;
  8.     wcout << L"Size Of 'char': " << sizeof(char) << endl;
  9.  
  10.     return 1337;
  11. }
Add Comment
Please, Sign In to add comment