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
What is the difference between a structure and a union?
Why malloc is faster than calloc?
An entire structure variable can be assigned to another structure variable if __________
3 Answers Sasken, TCS, Tech Mahindra, Wipro,
how to swap 2 numbers within a single statement?
Explain the properties of union. What is the size of a union variable
How can I call a function, given its name as a string?
What is context in c?
When was c language developed?
Explain null pointer.
what are two categories of clint-server application development ?
What is a lookup table in c?
what does the following code do? fn(int n,int p,int r) { static int a=p; switch(n){ case 4:a+=a*r; case 3:a+=a*r; case 2:a+=a*r; case 1:a+=a*r; } } a.computes simple interest for one year b.computes amount on compound interest for 1 to 4 years c.computes simple interest for four year d.computes compound interst for 1 year