You are not logged in.
Pages:: 1
#1 2015-09-17 05:58:47
C Language Basic:
C Programming Quizzes C Language Basic
Directions:
Determine Output:
Question:
void main()
{
static char *s[] = {"black", "white", "yellow", "violet"};
char **ptr[] = {s+3, s+2, s+1, s}, ***p;
p = ptr;
++p;
printf("%s",*--*++p + 3);
}
Option A):
ck
Option B):
ow
Option C):
et
Option D):
te
Correct Answer is Option A):
ck
You cannot discover the new oceans unless you have the courage to lose the sight of the shore.
Offline
2015-09-17 05:58:47
- Advertisement
- Ads By Google
Re: C Language Basic:
\n
Pages:: 1