We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1530d7f commit 28b5a13Copy full SHA for 28b5a13
week1/src/main.cpp
@@ -21,7 +21,7 @@ int main() {
21
// Equivalent to cout << "Hello World" << endl; as we use namespace std
22
std::cout << "Hello World" << std::endl;
23
// Let's get used to variables
24
- int myInteger = 1; // I am an integer, I am 16bit and signed so I can be between -2^15-1 and 2^15
+ int myInteger = 1; // I am an integer, I am 32bit and signed so I can be between -2^31-1 and 2^31
25
float myFloat = 1.41241; // I am float, I can store up to 7 decimals
26
double myDouble = 1.4124132213; // I am double, I can store up to 15 decimals
27
cout << "The value of myInteger is " << myInteger << endl;
0 commit comments