fork download
  1. #include <iostream>
  2.  
  3. using namespace std;
  4.  
  5. typedef struct abc {
  6. int a;
  7. int b;
  8. int c;
  9. }* NODE;
  10.  
  11. int main()
  12. {
  13. cout << sizeof(NODE);
  14. return 0;
  15. }
  16.  
Success #stdin #stdout 0s 3460KB
stdin
Standard input is empty
stdout
4