C++ Lesson 12: sizeof, typedef & escape sequences
sizeof It is often helpful to know the amount of memory consumed by a variable or datatype. Using the SizeOf operator, you can get how much memory (in bytes) that a given variable has allocated. // The following data sizes are dependent on the CPU. cout << "The INT datatype...