TwITe

Untitled

Jul 18th, 2017
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.31 KB | None | 0 0
  1. int main()
  2. {
  3.     char arr1[1] { 1 };
  4.     char* p1 = arr1;
  5.     int arr2[2]{ 1, 2 };
  6.     int* p2 = arr2;
  7.     cout << sizeof(char) << " " << sizeof(*p1) << " " << sizeof(p1) << endl;
  8.     cout << sizeof(int) << " " << sizeof(*p2) << " " << sizeof(p2);
  9.     system("PAUSE");
  10.     return 0;
  11. }
  12.  
  13. //Компиляция:
  14. //1 1 4
  15. //4 4 4
Advertisement
Add Comment
Please, Sign In to add comment