fork download
  1. #include <stdio.h>
  2.  
  3. int main()
  4. {
  5. char c;
  6. int i;
  7. float f;
  8. double d;
  9.  
  10. printf("char c %p\n"
  11. "int i %p\n"
  12. "float f %p\n"
  13. "double d %p\n",
  14. &c, &i, &f, &d);
  15.  
  16. return 0;
  17. }
Success #stdin #stdout 0.01s 5280KB
stdin
Standard input is empty
stdout
char    c       0x7ffc3cc6b4b7
int     i       0x7ffc3cc6b4b8
float   f       0x7ffc3cc6b4bc
double  d       0x7ffc3cc6b4c0