Advertisement
Guest User

Untitled

a guest
Sep 23rd, 2017
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. #include <iostream>
  2. #include <windows.h>
  3.  
  4. using namespace std;
  5. int main() {
  6.  
  7. int tab[3] = { 11, 22, 33 };
  8. cout << sizeof(tab); // skoro tab to wskaznik na pierwszy element to
  9. //powinno wypisać 12
  10.  
  11.  
  12.  
  13. return 0;
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement