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

Post New Answer

More C Interview Questions

What is variable in c with example?

1 Answers  


What is identifiers in c with examples?

0 Answers  


what are far pointers?

1 Answers  


Why do u use # before include in a C Progam?

9 Answers   IBM,


how should functions be apportioned among source files?

0 Answers  






A float occupies 4 bytes in memory. How many bits are used to store exponent part? since we can have up to 38 number for exponent so 2 ki power 6 6, 6 bits will be used. If 6 bits are used why do not we have up to 64 numbers in exponent?

0 Answers  


10. Study the code: void show() main() { show(); } void show (char *s) { printf("%sn",s); } What will happen if it is compiled & run on an ANSI C Compiler? A)It will compile & nothing will be printed when it is executed B)it will compile but not link C)the compiler will generate an error D)the compiler will generate a warning

5 Answers   Accenture,


which one is better structure or union?(other than the space occupied )

2 Answers  


write the function int countchtr(char string[],int ch);which returns the number of timesthe character ch appears in the string. for example the call countchtr("she lives in Newyork",'e') would return 3.

6 Answers  


void main() { int i=5; printf("%d",i++ + ++i); }

21 Answers   ME,


What is a method in c?

0 Answers  


In a switch statement, what will happen if a break statement is omitted?

0 Answers  


Categories