Practice ยท 1 of 3
Final Value
Implement int final_value(void) that performs exactly this sequence with one local int x: start at 10, add 5, double it (x = x * 2), subtract 3. Return the final value.
Difficulty: beginner
Press Submit to check your solution.
Back to lesson: Practice: Value Surgery