fork download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. int val = 1234;
  5. printf("The address of val is: %p", &val);
  6. return 0;
  7. }
  8.  
Success #stdin #stdout 0s 2112KB
stdin
Standard input is empty
stdout
The address of val is: 0xbfc3ef8c