fork download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. char a[10][7] = {"hi", "hello", "fellow"};
  5. printf("%s",a[1]);
  6.  
  7. return 0;
  8. }
  9.  
Success #stdin #stdout 0s 2156KB
stdin
Standard input is empty
stdout
hello