Answers for "size of array of char in c++"

C++
3

c++ length of char*

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

using namespace std;

int main()
{
    char *str = "ABC";
    cout << strlen(str) << endl;
    return 0;
}
Posted by: Guest on August-01-2020
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

Browse Popular Code Answers by Language