InterviewSolution
Saved Bookmarks
| 1. |
The pointer used in the mblen() function points to the _________(a) first byte of multibyte character(b) last byte of multibyte character(c) middle byte of multibyte character(d) no pointer is used in mblen functionThis question was addressed to me in an online quiz.This interesting question is from General Utilities topic in chapter C Library of C |
|
Answer» RIGHT choice is (a) FIRST byte of multibyte character Best explanation: The PROTOTYPE of the functon mblen() is int mblen(const char *s,size_t N); The POINTER ‘s’ points to the first byte of the multibyte character. |
|