'3' - '2' + 'm' / 'n' is ______.
a. 0
b. 1
c. 2
d. 3
b When an operand is a character in an arithmetic expression, the character is casted to an int value.
Computer Science & Information Technology
You might also like to view...
Which of the following defines the destination application or process that uses the IP and UDP headers?
A. Checksum field value B. Dynamic Port Number field value C. Length field value D. Destination Port Number field value
Computer Science & Information Technology
Write a constructor that initializes the matrix dimensions and sets all elements to initVal.
const int MAX_ROWS = 10; const int MAX_COLS = 10; class Matrix { public: Matrix() {} private: int rows; int cols; int mat[MAX_ROWS][MAX_COLS]; };
Computer Science & Information Technology