#include int main(void); int main(void) { int i = 0; while ( i < 10 ) { printf("%d\n", i); i++; } return 0; }