You are not logged in.
Pages:: 1
#1 2015-09-17 04:02:39
Compiler Error:
C Programming Quizzes C Language Basic
Directions:
Determine Output:
Question:
void main()
{
char string[]="Hello World";
display(string);
}
void display(char *string)
{
printf("%s", string);
}
Option A):
will print Hello World
Option B):
Can't Say
Option C):
None
Option D):
Compiler Error
Correct Answer is Option D):
Compiler Error
You cannot discover the new oceans unless you have the courage to lose the sight of the shore.
Offline
2015-09-17 04:02:39
- Advertisement
- Ads By Google
Re: Compiler Error:
Pages:: 1