fork download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. // your code goes here
  5. char buf[4096];
  6. buf[4] = 'a';
  7. int i = 0;
  8. i = buf[4];
  9.  
  10. printf("%d\n", i);
  11. return 0;
  12. }
  13.  
Success #stdin #stdout 0s 5472KB
stdin
Standard input is empty
stdout
97