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