Examveda

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));
}

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


This Question Belongs to C Program >> Standard Library Functions

Join The Discussion

Related Questions on Standard Library Functions