Physics, asked by Technology7562, 1 year ago

Find the output of the following ‘C’ program
# include
main ( )
{ int i=5;
While (i)
{i - -;
if (i = = 3)
break;
Printf (“%d”, i);
}
}

Answers

Answered by vidya2207
0

Output for the given code is

5

4

Hope it helps( I am not so sure about the answer though)

Similar questions