fork download
  1. #include <stdio.h>
  2.  
  3. void foo(char *cc[])
  4. {
  5. printf("%p\n",(void*)cc);
  6. cc++;
  7. printf("%p\n",(void*)cc);
  8. }
  9.  
  10. int main()
  11. {
  12. char *c[] = {"Hello","World"};
  13. foo(c);
  14. }
Success #stdin #stdout 0.01s 1720KB
stdin
Standard input is empty
stdout
0xbfa20560
0xbfa20564