Answers for "how to find the size of a character array in c++"

C++
1

c++ length of char array

char* example = "Lorem ipsum dolor sit amet";
int length = strlen(example);
std::cout << length << '\n'; // 26
Posted by: Guest on January-24-2021
0

how to find the size of a character array in c++

Instead of sizeof() for finding the length of strings or character 
arrays, just use strlen(string_name) with the header file
#include <cstring>   
it's easier.
Posted by: Guest on May-02-2020

Code answers related to "how to find the size of a character array in c++"

Browse Popular Code Answers by Language