how to get length of character array in c++ code example
Example 1: c++ length of char array
char* example = "Lorem ipsum dolor sit amet";
int length = strlen(example);
std::cout << length << '\n';
Example 2: c++ length of char*
#include <iostream>
#include <string.h>
using namespace std;
int main()
{
char *str = "ABC";
cout << strlen(str) << endl;
return 0;
}
Example 3: length of a char array in c
char chararray[10];
size_t len = strlen(chararray);
Example 4: char size length c++
char* a = "ABC";
int length = sizeof(a)/sizeof(char);
Example 5: 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.