What will the given C code do?
#include <stdlib.h>
_Mbsave_Mbxlen={0};
int (mblen)(const char *s ,size_t n)
{
return(_Mbtowc(NULL s,n,&_Mbxlen));
}
#include <stdlib.h>
_Mbsave_Mbxlen={0};
int (mblen)(const char *s ,size_t n)
{
return(_Mbtowc(NULL s,n,&_Mbxlen));
}A. determine length of next multibyte code
B. determine next multibyte code
C. translate multibyte string to wide char string
D. translate wide character to multibyte string
Answer: Option A

Join The Discussion