Guest User

Untitled

a guest
Oct 18th, 2017
108
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.16 KB | None | 0 0
  1. #include <iostream>
  2.  
  3. int main ( void ) {
  4. std::cout << "sizeof(int) = " << sizeof(int) << '\n';
  5. std::cout << "sizeof(void*) = " << sizeof(void*) << '\n';
  6. }
Add Comment
Please, Sign In to add comment