fork download
  1. #include <stdio.h>
  2.  
  3. int main()
  4. {
  5. char a[] = "blahblah";
  6.  
  7. printf("%xl\n", a);
  8. printf("%xl\n", &a);
  9.  
  10. return 0;
  11. }
Success #stdin #stdout 0s 2248KB
stdin
Standard input is empty
stdout
bfd97b37l
bfd97b37l