fork download
  1. #include<stdio.h>
  2.  
  3. int main()
  4. {
  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. return 0;
  15. }
Success #stdin #stdout 0s 5548KB
stdin
Standard input is empty
stdout
eel