By zrydento, on December 5th, 2009
The following article gives a brief overview of the structure in C/C++. The structure was first introduced in C where the need to group variables into a single record arose. Variables normally were assigned a single value or were assigned multiple values of the same type (array). The introduction of the structure allowed for variables to
Continue reading Overview of a structure in C and C++
By zrydento, on November 25th, 2009
A data object is a block in computer memory that can either contain a single value of a group of values. The value of the data objects can be accessed using a simple variable or another complex expression. Each object has a unique data type which determines how much storage would be allocated in memory. It
Continue reading Types of Data Objects in C++
Comments