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