10. Study the code:
void show()
main()
{
show();
}
void show (char *s)
{
printf("%sn",s);
}
What will happen if it is compiled & run on an ANSI C
Compiler?
A)It will compile & nothing will be printed when it is
executed
B)it will compile but not link
C)the compiler will generate an error
D)the compiler will generate a warning
Answer Posted / hanumant
D)the compiler will generate a warning
| Is This Answer Correct ? | 1 Yes | 6 No |
Post New Answer View All Answers
Why we use break in c?
What is the condition that is applied with ?: Operator?
Where in memory are my variables stored?
What is array within structure?
Can the “if” function be used in comparing strings?
in multiple branching construct "default" case is a) optional b) compulsarily c) it is not include in this construct d) none of the above
any limit on the number of functions that might be present in a C program a) max 35 functions b) max 50 functions c) no limit d) none of the above
Write a C/C++ program that connects to a MySQL server and checks if the InnoDB plug-in is installed on it. If so, your program should print the maximum number of concurrent threads that the InnoDB plug-in can create.
What is the full form of getch?
What is the difference between text and binary modes?
What is ctrl c called?
What is assert and when would I use it?
What is a void * in c?
What is meant by recursion?
Describe the order of precedence with regards to operators in C.