What will be output of the following “c” code?
		
					

Loading

โœช Choose the correct option.

What will be output of the following “c” code?


void main()
{
int c[ ]={2.8,3.4,4,6.7,5};
int j,*p=c,*q=c;
for(j=0;j<5;j++) {
printf(" %d ",*c);
++q;
}
for(j=0;j<5;j++){
printf(" %d ",*p);
++p;
}
}

A. 2 3 4 6 5
2 3 4 6 5
B. 2 2 2 2 2
2 3 4 6 5
C. 2.8 3.4 4 6.7 5
2.8 3.4 4 6.7 5
D. None of these

Leave a Comment