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