why is the size of a wide character in c++
Answers
Answered by
0
Answer:
wide character in C++. ... For 2-byte space wide character can hold 64K (65536) different characters. So the wide char can hold UNICODE characters. The UNICODE values are international standard which allows for encoding for characters virtually for any character of any language.
Answered by
0
Answer:
Wide char and library functions in C++
The main difference is that char takes 1-byte space, but wide character takes 2-bytes (sometimes 4-byte depending on compiler) of space in memory. For 2-byte space wide character can hold 64K (65536) different characters. So the wide char can hold UNICODE characters.
I hope it might help you
Mark it as brainliest answer and please follow me
Similar questions