A C programmer should not use an expression like the one that follows because ______.

```
n = i + x * ++i;
```
a. the expression may produce different results on different ANSI C compilers
b. it is illegal to have two consecutive operators
c. the ++ operator cannot be used in combination with other arithmetic operators
d. the increment operator cannot be used in the same expression as the addition operator
e. none of the above


A

Computer Science & Information Technology

You might also like to view...

The use of function ____________________ permits the compiler to error-check data types.

Fill in the blank(s) with the appropriate word(s).

Computer Science & Information Technology

A ____ is a set of instructions that you specify to automate certain database tasks.

A. data access page B. form C. report D. macro

Computer Science & Information Technology

Which operator can be used in string concatenation?

a. * b. += c. ++ d. =+

Computer Science & Information Technology

Identifies patterns in data, including outliers, uncovering the underlying structure to understand relationships between the variables.

A. pattern recognition analysis B. correlation analysis C. exploratory data analysis D. behavioral analysis

Computer Science & Information Technology