fork download
  1. #include <stdio.h>
  2.  
  3. char *someChar[]={"Some","Text"};
  4.  
  5. int main(){
  6. printf("%c", someChar[1][2]);
  7. return 0;
  8. }
Success #stdin #stdout 0s 2292KB
stdin
Standard input is empty
stdout
x