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