#include <stdio.h> void main() { int count = 1; for( ; count <= 10 ; ++count) printf("\n %d", count); printf("\n Finished.\n"); }