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 / manjeet
Then answer wll be (B) will compile but not link
| Is This Answer Correct ? | 1 Yes | 1 No |
Post New Answer View All Answers
What are the application of c?
How can variables be characterized?
What is the use of getchar functions?
What is the use of #include in c?
Tell me when would you use a pointer to a function?
What is FIFO?
Write a program in c to replace any vowel in a string with z?
How can I read a binary data file properly?
What is function in c with example?
What is the equivalent code of the following statement in WHILE LOOP format?
What is a list in c?
Why are all header files not declared in every c program?
How do you view the path?
write a C program: To recognize date of any format even formats like "feb-02-2003","02-february-2003",mm/dd/yy, dd/mm/yy and display it as mm/dd/yy.
What is pass by reference in c?