for(;;)
printf("C language")
What is out put of above??
Answer Posted / anilsn
compilation error, ; should be at the end of printf
| Is This Answer Correct ? | 1 Yes | 1 No |
Post New Answer View All Answers
What is a spanning Tree?
What is a rvalue?
What functions are used in dynamic memory allocation in c?
What is assert and when would I use it?
main() { printf("hello"); fork(); }
How can you find out how much memory is available?
What are examples of structures?
What are loops in c?
What is the use of typedef in c?
Write a program to use switch statement.
i = 25;switch (i) {case 25: printf("The value is 25 ");case 30: printf("The value is 30 "); When the above statements are executed the output will be : a) The value is 25 b) The value is 30 c) The value is 25 The value is 30 d) none
Is c call by value?
given post order,in order construct the corresponding binary tree
Can you write the function prototype, definition and mention the other requirements.
How can you call a function, given its name as a string?