Computer Science Homework Solutions
Problem
#152535

Declarations in C

****This is "C" Programming****

I selected "b" but I've always seem to get lost doing Boolean.


Assuming the following declarations:

int A=1, B=2, C=3, D=4;

What is the value of the following (Boolean) expression?

C == D || B > A && C

a. 0
b. 1
c. There is a syntax error in the expression.
d. There is no error, but the value cannot be determined from the information given.

My breakdown is as follows:

C == D || B > A && C
3 == 4 || 2 > 1 && 3
(3 == 4) || (2 > (1 && 3))
   0 || (2 > (1))
      0 || 1
answer is true or 1

Solution
What is this?
By OTA - Overall OTA Rating
Purchase Cost Now
$2.19 CAD (was ~$3.99)
Included in Download
  • Plain text response
$2.19 Instant Download
Add to Cart
Why you can trust BrainMass.com
  • Your Information is Secure
  • Best Online Academic Help Service
  • Students find real academic Success
Related Solutions
Browse