Answers for "get length of char array c++"

C++
1

how to find length of character array in c++

#include <iostream>

using namespace std;

int main()
{
    char arr[] = "grepper";
    cout << sizeof(arr) << endl;
    return 0;
    //    keep it in mind that character arrays have length of one more than your characters because last one is for  to show that word has ended
}
Posted by: Guest on November-27-2020
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
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

char size length c++

char* a = "ABC";
int length = sizeof(a)/sizeof(char);
Posted by: Guest on July-05-2020

Browse Popular Code Answers by Language