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. There is no returned value.

Computer Science & Information Technology

You might also like to view...

When an audio file has been inserted on a slide, a ________ icon displays to represent the file

A) black megaphone B) mouth of a person C) gray speaker D) black microphone

Computer Science & Information Technology

The default theme in a new document is:

A) Formal. B) Office. C) Windows. D) Word.

Computer Science & Information Technology