Posts Tagged Utilizare
How to: Define and Use the Pointers Variables in C++
Posted by Marius in C++, Data Structures on November 3, 2009
The pointer type variables allow the accessing of memory areas with numerical content for the management of the values which represent memory addresses. The dimension of a pointer variable depends on the processor architecture.
In the C++ programming language, the definition template of a pointer variable is:
Read the rest of this entry »
How to: Use a DLL – Dynamic Link Library in C++ as Visual Studio 2008 Project
Posted by Marius in C++, Data Structures on November 3, 2009
The usage of the programming elements included in DLL’s [...] it is made in C++ applications by respecting the rules stated below.
The usage of a DLL in the C++ programming language in the Visual Studio programming environment, it is made in the following way:
- Create a C++ project – type: Console application;
- Define the content for the source file which uses elements included in the DLL;
- Create the executable file.