You are not logged in.

#1 2015-05-25 09:47:39

hasnain
Administrator
From: Chichawatni
Registered: 2014-10-13
Posts: 8,355
Website

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.

2015-05-25 09:47:39

Advertisement
Ads By Google

Re: Void main():



\n

Board footer