Predict the output of following “C” code:

			  		

Loading

โœช Choose the correct option.

Predict the output of following “C” code:


void main()
{
int a,x=2,3,4,5;
a=1,2,3,4,5;
printf("%d%d",x,a);
}

A. Error
B. 5,1
C. 2,1
D. 5,5