fork download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. //int arr[3]={5,6,7};
  5. // printf("%d",arr[1]);
  6. char arr[3]={'G','n','X'};
  7. printf("%c",arr[2]);
  8. return 0;
  9. }
  10.  
Success #stdin #stdout 0s 5312KB
stdin
Standard input is empty
stdout
X