InterviewSolution
Saved Bookmarks
| 1. |
String operation such as strcat(s, t), strcmp(s, t), strcpy(s, t) and strlen(s) heavily rely upon.(a) Presence of NULL character(b) Presence of new-line character(c) Presence of any escape sequence(d) None of the mentionedThis question was posed to me in an online quiz.My question is from String Operations in portion Input and Output in C of C |
|
Answer» The correct choice is (a) Presence of NULL character |
|