InterviewSolution
Saved Bookmarks
| 1. |
How Do You Print Only Part Of A String? |
|
Answer» /* Use printf () to PRINT the first 11 CHARACTERS of source_str. */ printf (“First 11 characters: ‘%11.11s’n”, source_str);/* Use printf () to print the first 11 characters of source_str. */ |
|