Entradas con la etiqueta ‘C/C++’

Composite Assigment Operators. (Operadores de Asignación en C++. )

Miércoles, 27 de julio de 2011

The standard assignment operator in C++ is the equals sign =. In addition to this operator, C++ also includes the following composite assignment operators: +=, -=, *=, /=, and %=.

We make an example to show the functionality

(más…)