fork download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. char *s[] = {{"Vidhi"},{"Sethi"},{"ji"}};
  5. printf("%u\n",(s));
  6. printf("%u\n",(s+1));
  7. printf("%u\n",(&s+1));
  8. return 0;
  9. }
  10.  
Success #stdin #stdout 0s 4296KB
stdin
Standard input is empty
stdout
725945520
725945528
725945544