the statement while(i) puts the entire logic in loop. this loop is called
a) indefinite loop
b) definite loop
c) loop syntax wrong
d) none of the above
No Answer is Posted For this Question
Be the First to Post Answer
How do shell structures work?
Why does everyone say not to use gets?
Explain threaded binary trees?
In a switch statement, explain what will happen if a break statement is omitted?
What is C language Terminator?
What are register variables in c?
What is quick sort in c?
What is maximum size of array in c?
What is the difference between malloc() and realloc()?
wtite a program that will multiply two integers in recursion function
what is output? main() { #define SQR(x) x++ * ++x int i = 3; printf(" %d %d ",SQR(i),i * SQR(i)); } a)9 27 b)35 60 c)20 60 d)15 175
What does & mean in scanf?