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

How do we open a binary file in Read/Write mode in C?

0 Answers   Alter,


What is pragma c?

0 Answers  


print out of string in this format; 1. "rajesh" 2. \n 3. %d

5 Answers   mpower,


WHAT IS C?

6 Answers  


How do you do dynamic memory allocation in C applications?

0 Answers  






Explain what’s a signal? Explain what do I use signals for?

0 Answers  


What is the difference between exit() and _exit() function?

0 Answers  


what is default constructor?

2 Answers   HCL,


What is page thrashing?

0 Answers  


write a c program to print the next of a particular no without using the arithmetic operator or looping statements?

1 Answers   TCS,


process by which one bit patten in to another by bit wise operation is? (a) masking, (b) pruning, (c) biting, (d) chopping,

0 Answers   InterGraph,


void main() { static int i = 5; if(--i) { main(); printf("%d ",i); } } what would be output of the above program and justify your answer? }

5 Answers   C DAC, CDAC, Infosys, Wipro,


Categories