fork download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. int x=3;
  5. int siz;
  6.  
  7. siz = sizeof(x++);
  8. printf("%d\n", x);
  9.  
  10. return 0;
  11. }
  12.  
Success #stdin #stdout 0s 2052KB
stdin
Standard input is empty
stdout
3