Type aliases (typedef / using) A type alias is a different name by which a type can be identified. In…
Read More

Type aliases (typedef / using) A type alias is a different name by which a type can be identified. In…
Read More
Data structures A data structure is a group of data elements grouped together under one name. These data elements, known…
Read More
In the programs seen in previous chapters, all memory needs were determined before program execution by defining the variables needed.…
Read More
In earlier chapters, variables have been explained as locations in the computer’s memory which can be accessed by their identifier…
Read More
The string class has been briefly introduced in an earlier section. It is a very powerful class to handle and…
Read More
An array is a series of elements of the same type placed in contiguous memory locations that can be individually…
Read More
Scopes Named entities, such as variables, functions, and compound types need to be declared before being used in C++. The…
Read More
In C++, two different functions can have the same name if their parameters are different; either because they have a…
Read More
Functions allow to structure programs in segments of code to perform individual tasks. In C++, a function is a group…
Read More
A simple C++ statement is each of the individual instructions of a program, like the variable declarations and expressions seen…
Read More
The example programs of the previous sections provided little interaction with the user, if any at all. They simply printed…
Read More
Once introduced to variables and constants, we can begin to operate with them by using operators. What follows is a…
Read More
URL: http://www.euroinformatica.ro/work/marian/ 15,251 total views, 2 views today
Read More
Constants are expressions with a fixed value. Literals Literals are the most obvious kind of constants. They are used to…
Read More
A computer receives information from different applications in various forms. Sometimes a person types it using the keyboard. Sometimes the…
Read More
Console Applications The C# language is used to create applications that display on a black window referred to as the…
Read More
The usefulness of the “Hello World” programs shown in the previous chapter is rather questionable. We had to write several…
Read More
C++ uses notations that may appear strange to nonprogrammers. We now consider a simple program that prints a line of…
Read More