How many iterations does the following For loop executes? (count is of type int.) for ( count 0; count <= 20; count--) DoSomething ();
a 21
b 18
c 19
d 20
e infinite