fork download
  1. #include <stdio.h>
  2.  
  3. int main()
  4. {
  5. /* POINTER AS AN ADDRESS */
  6. int q, *l;
  7. double *p;
  8.  
  9. printf("address of q is %p\n", &q);
  10. printf("p contains %p\n", p);
  11.  
  12. }
  13.  
Success #stdin #stdout 0s 9432KB
stdin
Standard input is empty
stdout
address of q is 0x7fff9d0b31ec
p contains (nil)