Based on the function call statement, what is the correct prototype statement for AnswerThePhone?
```
int main()
{
bool bHome;
char greeting[25] = “Hello, are you there?”;
bHome = AnswerThePhone(greeting);
```
A. void AnswerThePhone(char s[] );
B. bool AnswerThePhone(char s[], char c );
C. bool AnswerThePhone(char s[] );
D. char AnswerThePhone(char s[] );
C. bool AnswerThePhone(char s[] );
Computer Science & Information Technology
You might also like to view...
A(n) ____________________ control is a security measure that defines who can access a computer, when they can access it, and what actions they can take while accessing the computer.
Fill in the blank(s) with the appropriate word(s).
Computer Science & Information Technology
In the HLOOKUP function, the third argument is the column index number.
Answer the following statement true (T) or false (F)
Computer Science & Information Technology