Run ❯
Get your
own
website
×
Change Orientation
Change Theme, Dark/Light
Go to Spaces
#include
int main() { int i = 0; do { printf("%d\n", i); i++; } while (i < 5); return 0; }
0
1
2
3
4