ALL
What is the output of the following program?
int main()
{
for (int i = 0; i < 3; i++)
{
if (i == 2).
cout << "1";
else
cout << "O" << i << " ";
}
return 0;
}
2
3
Pick ONE option
5
00 01 1
6
00 01 02
7
00 01 1 03
8
010
Answers
Answered by
0
zvsfshdj shashssgjdvn
Answered by
0
Answer:
the out put of the following programme is:
00011.
I hope it helps you ☺️
Similar questions