Question: What C-string will be stored in singingString after the following code is run? char singingString[20] = DoBeDo; strcat(singingString, to you); A. to you B.
What C-string will be stored in singingString after the following code is run?
char singingString[20] = "DoBeDo"; strcat(singingString, " to you");
| A. to you |
| B. | DoBeDo |
| C. | DoBeDoto you |
| D. | DoBeDo to you |
| E. | None of the above |
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
