fork download
  1. #include <stdio.h>
  2.  
  3. int main()
  4. {
  5. int a[10];
  6. printf("a without ref.: 0x%x\n",a);
  7. printf("a with ref.: 0x%x\n",&a);
  8. return 0;
  9. }
Success #stdin #stdout 0.02s 1720KB
stdin
Standard input is empty
stdout
a without ref.: 0xbfb545dc
a with    ref.: 0xbfb545dc