InterviewSolution
Saved Bookmarks
| 1. |
Does Console.writeline() Stop Printing When It Reaches A Null Character Within A String? |
|
Answer» STRINGS are not null terminated in the runtime, so embedded nulls are allowed. Console.WriteLine() and all similar METHODS continue until the END of the STRING. Strings are not null terminated in the runtime, so embedded nulls are allowed. Console.WriteLine() and all similar methods continue until the end of the string. |
|