fork download
  1. #include <stdio.h>
  2.  
  3. int main(int argc, char* argv[])
  4. {
  5. char *aa = 0;
  6. int *bb = 0;
  7. short *cc = 0;
  8.  
  9. printf("%p\n", (aa + 3));
  10. printf("%p\n", (bb + 6));
  11. printf("%p\n", (cc + 10));
  12.  
  13. return 0;
  14. }
Success #stdin #stdout 0s 2052KB
stdin
Standard input is empty
stdout
0x3
0x18
0x14