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 / vaibhav
c)the compiler will generate an error
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
Which is best linux os?
What is size of union in c?
If fflush wont work, what can I use to flush input?
Why do we use namespace feature?
What does %d do in c?
a parameter passed between a calling program and a called program a) variable b) constant c) argument d) all of the above
What is page thrashing?
Write a program to implement queue.
Explain the concept and use of type void.
What is an lvalue?
Is c a great language, or what?
What is the use of define in c?
What is array in c with example?
Take an MxN matrice from user and then sum upper diagonal in a variable and lower diagonal in a separate variables. Print the result
Explain what is the stack?