fork download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4.  
  5. char in[] = {'a','b','c','d','f','r','t','b','h','j','l','i'};
  6. char *out = in;
  7.  
  8. printf("%c", out[2]);
  9.  
  10. return 0;
  11. }
  12.  
Success #stdin #stdout 0s 2008KB
stdin
Standard input is empty
stdout
c