EMPEZAR DE CERO A PROGRAMAR EN LENGUAJE C
C/C++/C# HTML Java JavaScript Linux PHP Python Swift
 Recursos > Código fuente > Capítulo 12 > Test 12.2
Pregunta del Test de Autoevaluación 12.2
 Código fuente
#include <stdio.h>
int main()
{
   int x, y = 46, z = 43;
   x = y % z;
   x = x++ * 4;
   printf( "%d", x );
   return 0;
}
 Fichero con extensión (.c)