Based on the function prototype, what is the correct call statement for WriteASentence?

```void WriteASentence(char s[]);
int main()
{
char sentence[25] = “How now brown cow.”.;
char letter = ‘y’;
//what is the call statement for WriteASentence```
A. WriteASentence( sentence );
B. WriteASentence( letter, sentence );
C. WriteASentence( sentence [ ] ) ;
D. WriteASentence( letter = ‘y’);

A

Computer Science & Information Technology

You might also like to view...

When first argument in the SUBTOTAL function is in the range 101-111, only the visible values in the specified range are used

Indicate whether the statement is true or false

Computer Science & Information Technology

Which of these interview structures begins with the general and ends with the specific?

A) circle B) diamond C) funnel D) pyramid

Computer Science & Information Technology