Computer Science, asked by renu75sachdev, 26 days ago

ctr=0;
for(int i=1;i<5;i++)
for(int j=1;j<=5;j+=2)
++ctr;
find the value of ctr​

Answers

Answered by jobastin
2

Answer:

12

Explanation:

Answered by Rachel2004
2

Question:

int ctr=0;

for(int i=1;i<5;i++)

for(int j=1;j<=5;j+=2)

++ctr;

Answer:

12

Similar questions