Answers for "declare char array with no size 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
0

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];
	}
Posted by: Guest on August-06-2021

Code answers related to "C"

Browse Popular Code Answers by Language