fork download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. int a=5;
  5. int b=5;
  6. printf("%p",&a);
  7. printf("\n%p",&b);
  8. return 0;
  9. }
  10.  
Success #stdin #stdout 0.01s 5320KB
stdin
Standard input is empty
stdout
0x7fff140eb0e0
0x7fff140eb0e4