If you intend to place a block of statements within an if statement, you must place __________ around the block:
a. parentheses ( )
b. square brackets [ ]
c. angle brackets < >
d. curly braces { }
e. None of these
d. curly braces { }
Computer Science & Information Technology
You might also like to view...
The Mail Merge task pane can be displayed by clicking the Start Mail Merge button
Indicate whether the statement is true or false
Computer Science & Information Technology
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’);
Computer Science & Information Technology