Answers for "What is the size of a char variable in C++?"

C++
0

char size length c++

char* a = "ABC";
int length = sizeof(a)/sizeof(char);
Posted by: Guest on July-05-2020

Code answers related to "What is the size of a char variable in C++?"

Browse Popular Code Answers by Language