size of char in c++ code example
Example 1: range of long long in c++
Long
Data Type Size (in bytes) Range
long int 4 -2,147,483,648 to 2,147,483,647
unsigned long int 4 0 to 4,294,967,295
long long int 8 -(2^63) to (2^63)-1
unsigned long long int 8 0 to 18,446,744,073,709,551,615
Example 2: c++ length of char*
#include <iostream>
#include <string.h>
using namespace std;
int main()
{
char *str = "ABC";
cout << strlen(str) << endl;
return 0;
}
Example 3: char size length c++
char* a = "ABC";
int length = sizeof(a)/sizeof(char);
Example 4: data types in c++
int myNum = 5;
float myFloatNum = 5.99;
double myDoubleNum = 9.98;
char myLetter = 'D';
bool myBoolean = true;
string myText = "Hello";