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?


#include
#define max(a,b) (a>b?b:a)
#define squre(x) x*x
int main()
{
int i = 2, j = 3, k = 1;
printf ("%d %d", max(i,j), squre(k));
return 0;
}

A. 44563
B. 44595
C. 44564
D. 44621