What is the output of the following problem ?

		
					

Loading

โœช Choose the correct option.

What is the output of the following problem ?


#define two (x) 2*x

#define ddouble (x) x + x



void main()

{

int num, sum, product;

num = 1;

sum = - two (num); sum = -(sum + 1);

product = - ddouble (num);



printf ("%d%d/n" ,sum,product);

}

A. 0 0
B. 0 1
C. 44562
D. 1 0