fork download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4.  
  5. char alf[]="1234abcd";
  6.  
  7. char res[101];
  8.  
  9. res[100]=alf[2];
  10.  
  11. printf("%c", res[100]);
  12.  
  13. return 0;
  14. }
  15.  
Success #stdin #stdout 0s 4532KB
stdin
Standard input is empty
stdout
3