What will be the output of the following “C” program?
		
					

Loading

โœช Choose the correct option.

What will be the output of the following “C” program?


int main ()
{
int i = 2, j = 3, k = 1;
swap (i, j);
printf ("%d %d", i, j);
}
swap (int i, int j)
{
int temp;
temp = i; i = j; j = temp;
}

A. 44622
B. 44595
C. 44563
D. Compilation Error

Leave a Comment