InterviewSolution
Saved Bookmarks
| 1. |
Choose the correct statement.(a) bsearch() returns no value to the function(b) getenv() returns no value to the function(c) qsort() returns no value to the function(d) realloc() returns no value to the functionThis question was addressed to me in exam.Asked question is from General Utilities topic in portion C Library of C |
|
Answer» RIGHT OPTION is (c) qsort() returns no value to the function The BEST I can explain: The qsort() function does not RETURN any value. |
|