for(;;)
printf("C language")
What is out put of above??
Answers were Sorted based on User's Feedback
Answer / himanshu rajput
it will go infinitely,produce c language infinite time.
| Is This Answer Correct ? | 11 Yes | 1 No |
Answer / anilsn
compilation error, ; should be at the end of printf
| Is This Answer Correct ? | 1 Yes | 1 No |
matrix multiplication fails introspect the causes for its failure and write down the possible reasons for its failurein c language.
How to compare array with pointer in c?
Explain what is the benefit of using enum to declare a constant?
Explain what is wrong with this statement? Myname = ?robin?;
fn f(x) { if(x<=0) return; else f(x-1)+x; }
What is the explanation for cyclic nature of data types in c?
Which is more efficient, a switch statement or an if else chain?
what is the difference between class and unio?
write a progrmm in c language take user interface generate table using for loop?
Is swift based on c?
When is an interface "good"?
struct tag{ auto int x; static int y; };main() { struct tag s; s.x=4; s.y=5; printf(ā%dā,s.x); }