fork download
  1. #include <stdio.h>
  2.  
  3. typedef char synonym;
  4.  
  5. int main(void) {
  6.  
  7. synonym *synonym;
  8. printf("sizeof (synonym) = %ld\n", (long) sizeof (synonym));
  9. return 0;
  10. }
Success #stdin #stdout 0s 9432KB
stdin
Standard input is empty
stdout
sizeof (synonym) = 8