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...

A(n) ____________________ is known as the corruption of the instruction pointer, which points to the memory area where the function to be executed is stored.

Fill in the blank(s) with the appropriate word(s).

Computer Science & Information Technology

Merge fields are enclosed in _____ to show that they will not be printed in the final document.

A. pound symbols B. curly brackets C. angle brackets D. square brackets

Computer Science & Information Technology

An object’s ________ describes the information stored in the object.

Fill in the blank(s) with the appropriate word(s).

Computer Science & Information Technology

With Web 2.0, data is stored separately from instructions for how the data should be displayed so that content can be accessible from a variety of Internet-enabled devices.

Answer the following statement true (T) or false (F)

Computer Science & Information Technology