fork download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. char *s="quick brown fox";
  5. char q[] = {s[0], s[4], 0};
  6. char b[] = {s[6], s[10], 0};
  7. char f[] = {s[12], s[14], 0};
  8. printf("'%s' '%s' '%s'", q, b, f);
  9. return 0;
  10. }
  11.  
Success #stdin #stdout 0s 2112KB
stdin
Standard input is empty
stdout
'qk' 'bn' 'fx'