length of character array in cpp code example

Example 1: c++ get length of array

int arr[5];
int len = sizeof(arr) / sizeof(arr[0]);
// returns 5

Example 2: c++ length of char array

char* example = "Lorem ipsum dolor sit amet";
int length = strlen(example);
std::cout << length << '\n'; // 26

Example 3: c++ length of char*

#include <iostream>
#include <string.h>

using namespace std;

int main()
{
    char *str = "ABC";
    cout << strlen(str) << endl;
    return 0;
}

Example 4: 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.

Tags:

C Example