fork download
  1. #include <stdio.h>
  2. main() {
  3. int a = 3, b = 5;
  4. int *p = &b;
  5. *p = a;
  6. *p += a+b;
  7. printf("%d \n", &a);
  8. printf("%d \n", &b);
  9. printf("%d \n", *p);
  10. }
Success #stdin #stdout 0s 4400KB
stdin
Standard input is empty
stdout
18137120 
18137124 
9