length of a char array in c
char chararray[10];
size_t len = strlen(chararray);
length of a char array in c
char chararray[10];
size_t len = strlen(chararray);
how to use a variable as a char array size in c++
string strOne;
cin >> strOne;
string::size_type count = strOne.size();
char *x = new char[count]();
for (int i = 0; i < count; i++){
x[i] = strOne.at(i);
}
for (int i = 0; i < count; i++){
cout << x[i];
}
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us