Answers for "finding the length of a c_string 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 "finding the length of a c_string in c++"

Browse Popular Code Answers by Language