1.

Consider the following statement:#define hypotenuse (a, b) sqrt (a*a + b*b);The macro-call hypotenuse (a + 2, b + 3);

A. finds hypotenuse of triangle with sides a + 2 and b+3
B. finds square root of (a + 2)2 + (b + 3)2
C. is meaningless
D. finds square root of 3*a + 4*b + 5
Answer» E.


Discussion

No Comment Found