Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CPP

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
}
 
PREVIOUS NEXT
Tagged: #find #length #character #array
ADD COMMENT
Topic
Name
7+7 =