R
Q. Determine Output
void main() { char string[]="Hello World"; display(string); } void display(char *string) { printf("%s", string); }
Type mismatch in redeclaration of function display. In third line, when the function display is encountered, the compiler doesn't know anything about the function display. It assumes the arguments and return types to be integers, (which is the default type). When it sees the actual function display, the arguments and type contradicts with what it has assumed previously. Hence a compile time error occurs.
You must be Logged in to update hint/solution
Q. Multiple values of the same variable can be tested using ___.
Q. How many punctuation characters are allowed in C language?
Q. Choose a correct statement about a C Multidimensional array.
Q. What is the output of the following C program?
Q. Library function pow() belongs to which header file?
Q. What is a multidimensional array in C Language?
Q. Choose correct Syntax for C Arithmetic Compound Assignment Operators.
Discusssion
Login to discuss.