Computer Science, asked by yuvraj513, 11 months ago

(c)
Rewrite the following code fragment without break and continue :
while(Ch!= '*')
{ if(Ch == '?')
break;
if(Ch!= '\n')
continue;
a++; }​

Answers

Answered by rakeshsagalagate
6

Answer:

Explanation:

there :   while(Ch!='*')

{     if(Ch=='?')

         Ch='*';

      if(Ch!='\n')

          goto there;

      a++;

}

Similar questions