From 16d3ba0393b1c443798c0cfc3dc061a4f2519413 Mon Sep 17 00:00:00 2001 From: Bardia Alavi Date: Sun, 1 Aug 2021 21:49:14 -0700 Subject: [PATCH] Update README.md Changed minimum to maximum --- ch02/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ch02/README.md b/ch02/README.md index 35d98041..148a5645 100644 --- a/ch02/README.md +++ b/ch02/README.md @@ -12,7 +12,7 @@ The C and C++ standards do not specify the representation of float, double and l **Usage**: -- Use `int` for integer arithmetic. `short` is usually too small and, in practice,`long` often has the same size as `int`. If your data values are larger than the minimum guaranteed size of an `int`, then use `long long`. (In a word: short < **int** < long < long long) +- Use `int` for integer arithmetic. `short` is usually too small and, in practice,`long` often has the same size as `int`. If your data values are larger than the maximum guaranteed size of an `int`, then use `long long`. (In a word: short < **int** < long < long long) - Use an unsigned type when you know that the values cannot be negative. (In a word: no negative, unsigned.)