Question: Answer asap !!!! Can not use any control constructs such as if, do, while, for, switch, etc. /* * greaterThan10 - checks if x >
Answer asap !!!!
Can not use any control constructs such as if, do, while, for, switch, etc.
/*
* greaterThan10 - checks if x > 7
* Returns 1 if the argument is greater than 7 and 0 otherwise.
* Examples: greaterThan10(-8) = 0
* greaterThan10(18) = 1
* greaterThan10(10) = 0
* Legal ops: ! ~ & ^ | + << >>
* Max ops: 12
* Rating: 2
*/
int greaterThan10(int x) {
return 2;
}
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
