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
0
Output for the given code is
5
4
Hope it helps( I am not so sure about the answer though)
Similar questions