Archive for the 'Programming' Category

The C++ Built-In Data Type and Arrays

Wednesday, May 6th, 2009

The C++ Built-In Data Type 
C++ provides built-in support for primitive arithmetic data types such as integer:
//declares an integer object, ival
//initialized to a first value of 1024
int ival = 1024;
It also supports double precision and single precision floating point data types:

Basic Guide in Programming

Friday, May 1st, 2009

Part I. Introduction  
 

How to Solve a Problem?  
 
Programs often are written in response to some problems or task to be solved. For example, a bookstore enters into a file the title and publisher of each book it sells. The information entered in the order the books are sold. Every tweo weeks the owner computes by hand [...]