2. what will happen at runtime when
a. two valid data item is supplied at input for
scanf() statement expecting 3 data items?
b. 4 valid data item is supplied at input for
scanf() statement expecting 3 data items?
3. the fxn scanf() returns a number when called.
what does that number denote?
4. identify the difference in the intepretation of
the 'do-while' structure and 'while' loop statement
5. the ff loop
i=0
while(i<10)
{
for (i==5) continue;
i=i+1
}
may run into infinite loop while
for(i=o; i<10; i++)
{
if (i==5) continue;
will not, why