#include int main(int argc, char **argv) { int i; i = 0; while(i < 10) { printf("%d\n", i); i++; } }