InterviewSolution
Saved Bookmarks
| 1. |
What is the function of void *memset(s, c, n)?(a) places character s into first n characters of c, return c(b) places character c into first n characters of s, return s(c) places character s into first n characters of c, return s(d) places character c into first n character of s, return cThis question was posed to me in homework.I'm obligated to ask this question of String Operations topic in chapter String Operations in C of C |
|
Answer» Correct answer is (b) PLACES character c into first N CHARACTERS of s, return s |
|