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