How many times will the statement execute in the following code snippet?
for (int i=3; i>=1; i--) {
for (int j=4; j>0; j--) {
cout << print line << endl;
}
}
a) 3
b) 4
c) 9
d) Infinite loop