Answers for "how to get the size of char array according to number entered in c"

C
2

length of a char array in c

char chararray[10];
size_t len = strlen(chararray);
Posted by: Guest on May-24-2020

Code answers related to "how to get the size of char array according to number entered in c"

Code answers related to "C"

Browse Popular Code Answers by Language