Answers for "how to find the size of chars in a cstring 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 "how to find the size of chars in a cstring c++"

Browse Popular Code Answers by Language