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