/* Program to print out the numbers from one to 10 */ #include main() { int i; for (i = 1; i <= 10; i++) { printf("%d\n", i); } }