fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. typedef char* CharPtr;
  5.  
  6. int main() {
  7. char* x, y; //тут указатель только x
  8. char * x1, y1; //а тут все
  9. CharPtr x2, y2;
  10.  
  11. std::cout << sizeof(y) << sizeof(y1) << sizeof(y2) << sizeof(x) << sizeof(x1) << sizeof(x2) << std::endl;
  12.  
  13. return 0;
  14. }
Success #stdin #stdout 0s 3096KB
stdin
Standard input is empty
stdout
114444