Repair this code
The starter scale.c refuses to build because it never reads one of its parameters: repair it so scale returns the product of value and factor.
Steps
$ scale(6, 7)
42
$ scale(-5, 3)
-15
$ scale(9, 1)
9
$ scale(2147483647, 0)
0
Expected files
Allowed functions
None. Write every helper yourself.

Repair this code
The starter scale.c refuses to build because it never reads one of its parameters: repair it so scale returns the product of value and factor.
Steps
$ scale(6, 7)
42
$ scale(-5, 3)
-15
$ scale(9, 1)
9
$ scale(2147483647, 0)
0
Expected files
Allowed functions
None. Write every helper yourself.

Tests
Run the tests to grade your code