Tengo un problema en un programa simple, no entiendo cual es.

Iniciado por Anastacio, 19 Enero 2012, 15:27 PM

0 Miembros y 1 Visitante están viendo este tema.

Anastacio

i = 0;
while(i < algo) {
    /* codigo */
    ++i;
}


para que es el ++i???
You, stop to close my post, you were novice too!!!!!!!!!!!!

rir3760

Cita de: Anastacio en 20 Enero 2012, 19:33 PMi = 0;
while(i < algo) {
    /* codigo */
    ++i;
}


para que es el ++i?
Para incrementar el contador (la variable "i") en una unidad.

Un saludo
C retains the basic philosophy that programmers know what they are doing; it only requires that they state their intentions explicitly.
--
Kernighan & Ritchie, The C programming language

Anastacio

You, stop to close my post, you were novice too!!!!!!!!!!!!