Answers for "size of char array c++"

C++
3

c++ length of char*

#include <iostream>
#include <string.h>

using namespace std;

int main()
{
    char *str = "ABC";
    cout << strlen(str) << endl;
    return 0;
}
Posted by: Guest on August-01-2020
1

c++ length of char array

char* example = "Lorem ipsum dolor sit amet";
int length = strlen(example);
std::cout << length << 'n'; // 26
Posted by: Guest on January-24-2021
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
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
0

how to find the size of a character array in c++

Instead of sizeof() for finding the length of strings or character 
arrays, just use strlen(string_name) with the header file
#include <cstring>   
it's easier.
Posted by: Guest on May-02-2020

Browse Popular Code Answers by Language