for(;;)
printf("C language")

What is out put of above??

Answers were Sorted based on User's Feedback



for(;;) printf("C language") What is out put of above??..

Answer / himanshu rajput

it will go infinitely,produce c language infinite time.

Is This Answer Correct ?    11 Yes 1 No

for(;;) printf("C language") What is out put of above??..

Answer / anilsn

compilation error, ; should be at the end of printf

Is This Answer Correct ?    1 Yes 1 No

Post New Answer

More C Interview Questions

Explain which function in c can be used to append a string to another string?

0 Answers  


Why is c called a mid-level programming language?

0 Answers  


What is the difference between %d and %*d in C

3 Answers  


I have a varargs function which accepts a float parameter?

0 Answers  


What is wrong with this declaration?

0 Answers  






the portion of a computer program within which the definition of the variable remains unchanged a) mode b) module c) scope d) none

0 Answers  


Write a program to print this triangle: * ** * **** * ****** * ******** * ********** Don't use printf statements;use two nested loops instead. you will have to use braces around the body of the outer loop if it contains multiple statements.

6 Answers   Wipro,


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

1 Answers   Accenture,


What is a loop?

0 Answers  


How can I manipulate individual bits?

0 Answers  


hai iam working in sap sd module for one year and working in lumax ind ltd in desp department but my problem is i have done m.b.a in hr/marketing and working sap sd there is any combination it. can you give right solution of my problem. and what can i do?

0 Answers   HCL,


value = 0xabcd; for (loop = 1; (value >> 1) & 1 | loop & 1; loop++) { foo(); if (loop & 1) value >>= 1; } how many times is foo() executed?

6 Answers   Google,


Categories