Computer Science, asked by abdiq2020, 9 months ago

Find the error(s), if any) void main( )
{
char target = 'T';
int a = 1;
for(;1;){
(target) == ('T') ? (a++) : (a+=2);
if (a >= 5)
break;
else
cout< }
}

Answers

Answered by santosh272124
0

Answer:

Make proper use of loop statement

Similar questions