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
A) it will compile & nothing will be printed when it is
executed.
| Is This Answer Correct ? | 5 Yes | 4 No |
Post New Answer View All Answers
can we have joblib in a proc ?
What are the data types present in c?
How do you determine the length of a string value that was stored in a variable?
what do you mean by enumeration constant?
What is a static variable in c?
Why are all header files not declared in every c program?
What is the difference between the expression “++a” and “a++”?
What is call by reference in functions?
What is c language in simple words?
Write a C program in Fibonacci series.
The process of repeatedly running a set of computer instructions until some condition is specifed a) condition b) sequential condition c) global d) iteration
c programs are converted into machine language with the help of a) an interpreter b) a compiler c) an operatinf system d) none of the above
How many keywords are there in c?
What does c mean?
How can you draw circles in C?