fork download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. int a = 10;
  5. int *p;
  6. p = &a;
  7.  
  8. *p = 100;
  9.  
  10. printf("%d:%lu:%p",a,sizeof(p),p);
  11. return 0;
  12. }
  13.  
Success #stdin #stdout 0s 5288KB
stdin
Standard input is empty
stdout
100:8:0x7ffe1aca4384