Skip to content

Commit 28b5a13

Browse files
Fix typo 🔧 🔧 🔧
1 parent 1530d7f commit 28b5a13

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

week1/src/main.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ int main() {
2121
// Equivalent to cout << "Hello World" << endl; as we use namespace std
2222
std::cout << "Hello World" << std::endl;
2323
// 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
24+
int myInteger = 1; // I am an integer, I am 32bit and signed so I can be between -2^31-1 and 2^31
2525
float myFloat = 1.41241; // I am float, I can store up to 7 decimals
2626
double myDouble = 1.4124132213; // I am double, I can store up to 15 decimals
2727
cout << "The value of myInteger is " << myInteger << endl;

0 commit comments

Comments
 (0)