Computer Science, asked by rk3785086, 4 months ago

What is output of the following code?
int i;
for ( i = 0 ; i < 5 ; i ++ );
{ cout << " We are indians "; }​

Answers

Answered by deepalimokhadkar
1

Answer:

1,2,3,4,5,6, is the answer

Explanation:

Answered by srinua9284
1

Answer:

We are Indians 5 times

Explanation:

since the statement is present in loop which runs for five times .

Similar questions