fork download
  1. #include <stdio.h>
  2. void sub(const char **);
  3. int main(void) {
  4. const char *sary[4]={"python","c++","x programming","java"};
  5. sub(sary);
  6. return 0;
  7. }
  8. void sub(const char **sp)
  9. {
  10. printf("%s",sp[1]);
  11. printf("%s",*(sp+3));
  12. printf("%c",*(*(sp+2)+4));
  13. printf("%c",sp[0][3]);
  14. }
Success #stdin #stdout 0s 4528KB
stdin
Standard input is empty
stdout
c++javaoh