fork download
  1. int main()
  2. {
  3. int *c;
  4. float *x;
  5. double *m;
  6. int ch = 5;
  7. float xh = 5.0;
  8. double mh = 5.0L;
  9.  
  10. m=&mh;
  11. x=&xh;
  12. c=&ch;
  13.  
  14. printf("%p,%p,%p",c,x,m);
  15.  
  16. return 0;
  17. }
Success #stdin #stdout 0s 2052KB
stdin
Standard input is empty
stdout
0xbfe4a990,0xbfe4a994,0xbfe4a998