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