lucramirez7581 lucramirez7581 20-02-2024 Computers and Technology contestada How many times is the body of the loop below executed? int counter; counter = 1; while ( counter > 20 ) // body of loop counter = counter + 1; // end while A. 19 B. 20 C. 21 D. 0