Saved Bookmarks
| 1. |
Consider the following C++ statement and answer the following question: char Word[10]=”GOOD DAY”; Identify the correct output statement to display the string (a) write (word); (b) cout.write(word); (c) cout (word);(d) cout.write (word, 10); |
|
Answer» (d) cout.write(wond, 10); |
|