What is wrong with this code?

``` int ConvertFtToInches( int ft )
{
int inches;
inches = ft * 12;
}```
A. The function name is invalid.
B. You can’t have the variable name in the input argument list.
C. There is no returned value.
D. It will return the wrong value.

C

Computer Science & Information Technology

You might also like to view...

_________ is a naming convention in which the prefixes indicate the type of data or type of object

Fill in the blank(s) with correct word

Computer Science & Information Technology

Briefly describe the Reverse() method.

What will be an ideal response?

Computer Science & Information Technology