You are not logged in.
- Topics: Active | Unanswered
Pages:: 1
#1 2015-05-25 09:47:39
Void main():
Directions:
void main()
{
int I=5,*j,**k;
j=&I;
k=&j;
printf("%d%d%d",*j,**k,*(*k));
}
Question:
What is the output of the above program code?
Option A):
000
Option B):
555
Option C):
655
Option D):
666
Correct Answer is Option B):
555
Failure is the first step towards seccess.
Offline
2015-05-25 09:47:39
- Advertisement
- Ads By Google
Re: Void main():
\n
Pages:: 1