If the macro

#define RECTANGLE_AREA(x, y) ((x) * (y))
has been defined. Then the line
rectArea = RECTANGLE_AREA(a + 4, b + 7);
will be expanded to
a) rectArea = 11;
b) rectArea = (a + 4 * b + 7);
c) rectArea = ((a + 4) * (b + 7));
d) RECTANGLE_AREA(a + 4 , b + 7);


c) rectArea = ((a + 4) * (b + 7));

Computer Science & Information Technology

You might also like to view...

Why was the X Window interface developed?

What will be an ideal response?

Computer Science & Information Technology

Text box controls cannot display numeric data, currency, or dates

Indicate whether the statement is true or false

Computer Science & Information Technology

Windows 10 supports _____ categories of additional user accounts.

A. ?two B. three C. four D. ?five

Computer Science & Information Technology

Case 3-1 You are in the process of selecting the BackColors and ForeColors for your new application. When you originally learned to use Visual Studio, you were only aware of one of the palettes that was available to you, but your developer colleague informs you that you have more choices. You ask for some quick guidance to help sort through your options. Your colleague tells you that there is a palette in which you can select your own color by right-clicking a white color chip and then identifying the exact color you want. Which palette does she tell you to use to accomplish this?

A. Web B. System C. Custom D. All of the above

Computer Science & Information Technology