Which for loop will properly print "hello" 10 times?
A.for(int i = 0; i < 10; i++) { System.out.println("hello"); }
B.for(int i = 10) { System.out.println("hello"); }
C.for(int i = 0; i++; i < 10) { System.out.println("hello"); }
D.for(int i = 10; i < 0; i++) { System.out.println("hello");