void main()
{
for(; 0 ;)
... {
printf("hello");
... }
getch();
}



void main() { for(; 0 ;) ... { printf("hello"); ... } getch(); }..

Answer / shaik. jani bahsa

result is nothing, because 0 means false, 1 means true
once cond false pointr comes out of the loop.

Is This Answer Correct ?    10 Yes 0 No

Post New Answer

More C Interview Questions

15.what is the disadvantage of using macros? 16.what is the self-referential structure? 17.can a union be self-referenced? 18.What is a pointer? 19.What is the Lvalue and Rvalue? 20.what is the difference between these initializations? 21.Char a[]=”string”; 22.Char *p=”literal”; 23.Does *p++ increment p, or what it points to?

1 Answers  


What is wild pointer in c with example?

1 Answers  


Why array starts with index 0

2 Answers  


how to sort two array of characters and make a new array of characters.

1 Answers   Accenture,


write a c program to find reminder and quotient if one number is divided by other.to code this program don't use more than 2 variables

2 Answers   TCS,


how to use enum datatype?Please explain me?

3 Answers   Excel,


what is purpose of fflush(stdin) function

4 Answers  


What are advantages and disadvantages of recursive calling ?

12 Answers   College School Exams Tests, Evolving Systems, HP, Jyoti Ltd, Sage, Wipro,


Is c procedural or functional?

1 Answers  


Write a program to find the smallest and largest element in a given array in c language

11 Answers   Microsoft, Vembu,


Is stack a keyword in c?

1 Answers  


what is the little endian and big endian?

1 Answers  


Categories