What is wrong with the following nested for loop?
for (int i = 0; i < 3; i++) { for (int i = 0; i <= 5; i++) { // body of the loop here } }
There are not hints for this question