fork download
  1. #include <stdio.h>
  2. #include <stdlib.h>
  3. #include <assert.h>
  4.  
  5. int main()
  6. {
  7. int x = 20;
  8. int *y = x;
  9.  
  10.  
  11. printf("%d\n",y);
  12. y++;
  13.  
  14. printf("%d",y);
  15.  
  16. }
Runtime error #stdin #stdout 0s 2248KB
stdin
Standard input is empty
stdout
20
24