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 \0 to show that word has ended
}
Posted by: Guest on November-27-2020
0

c++ char array size

const char* Coffee = "Nescafe";

for(int i = 0; i < strlen(Coffee); i++)
{
    std::cout << Coffee[i] << "\n";
}
Posted by: Guest on October-28-2021

Browse Popular Code Answers by Language