Discussion Forum : C Miscellaneous
Question - Determine Output:
void main()
{
char string[]="Hello World";
display(string);
}
void display(char *string)
{
printf("%s", string);
}
Options:
A .  will print Hello World
B .  Compiler Error
C .  Can't Say
D .  None of These
Answer: Option B

Submit Your Solution Below and Earn Points !
Next Question
Submit Your Solution hear:

Your email address will not be published. Required fields are marked *