fork download
  1. #include <stdio.h>
  2.  
  3.  
  4. int main(void) {
  5. static char s[25] = "Hello world";
  6. int i=0;
  7. char ch;
  8. ch = s[++i];
  9. printf("%c", ch);
  10. ch = s[i++];
  11. printf("%c", ch);
  12. ch = s[i++];
  13. printf("%c", ch);
  14.  
  15. return 0;
  16. }
  17.  
Success #stdin #stdout 0s 5320KB
stdin
Standard input is empty
stdout
eel