Objectives of this tutorial: 1.Learn Variable types 2.How to declare a variable 3.Using namespace This is the second video of my tutorial series about C++ .NET 2008. In this video we will learn the most time about variables. **NOTE** This project is a base for almost all of our following videos so this one is a MUST watch! *VARIABLES* NAME | BIT SIZE | VALUES ACCEPTED char | 8 | -128 to 127 int | 32 | -2147483648 to 2147483647 float | 32 | 1.8E-38 to 3.4E+38 double | 32 | 2.2E-308 to 1.8E+ ...