/* Even numbers from 10 to 20. */ #include main () { int count, total; printf("Even Numbers\n"); total = 0; for (count = 10; count <= 20; count += 2) { printf("%d\n", count); total = total + count; } printf("Sum of numbers = %d\n", total); }