Using the following description, please replace the return line in C code; /* * conditional: same as x ? y : z * Examples: * conditional(0,3,4) = 4 * conditional(1,3,4) = 3 * conditional(4,5,6) = 5 * conditional(-1,7,8) = 7 * Legal ops: ! ~ & ^ | + << >> * Max ops: 16 */ int conditional(int x, int y, int z) { return 2 } You cannot: 1. Use any control constructs such as if, do, while, for, switch, etc. 2. Define or use any macros. 3. Define any additional functions in this file. 4. Call any functions. 5. Use any other operations, such as &&, ||, -, or ?:, not listed in the the "Legal ops" list for the function. 6. Use any form of casting. 7. Use any data type other than int.

C++ Programming: From Problem Analysis to Program Design
8th Edition
ISBN:9781337102087
Author:D. S. Malik
Publisher:D. S. Malik
Chapter7: User-defined Simple Data Types, Namespaces, And The String Type
Section: Chapter Questions
Problem 2SA
icon
Related questions
Question

Using the following description, please replace the return line in C code; 

/*
* conditional: same as x ? y : z
* Examples:
* conditional(0,3,4) = 4
* conditional(1,3,4) = 3
* conditional(4,5,6) = 5
* conditional(-1,7,8) = 7
* Legal ops: ! ~ & ^ | + << >>
* Max ops: 16
*/
int conditional(int x, int y, int z) {
return 2
}
 
You cannot:
1. Use any control constructs such as if, do, while, for, switch, etc.
2. Define or use any macros.
3. Define any additional functions in this file.
4. Call any functions.
5. Use any other operations, such as &&, ||, -, or ?:, not listed in the
the "Legal ops" list for the function.
6. Use any form of casting.
7. Use any data type other than int.
Expert Solution
steps

Step by step

Solved in 4 steps with 2 images

Blurred answer
Knowledge Booster
Algebraic Expressions
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
C++ Programming: From Problem Analysis to Program…
C++ Programming: From Problem Analysis to Program…
Computer Science
ISBN:
9781337102087
Author:
D. S. Malik
Publisher:
Cengage Learning