Test 11.12 EDC lenguaje C
¿Cuántos errores de sintaxis existen en el siguiente código fuente? (test_11_12.c):
#include <math.h>
#include <stdio.h>
int main()
{
...int a = 5 b = 6;
...float = c;
...c ← strq( a \ b );
...print( "%f" c );
...return 0;
}
A) 7
B) 3
C) 5
D) 6
E) Ninguna de las anteriores.
Ver solución
#include <math.h>
#include <stdio.h>
int main()
{
...int a = 5 b = 6;
...float = c;
...c ← strq( a \ b );
...print( "%f" c );
...return 0;
}
A) 7
B) 3
C) 5
D) 6
E) Ninguna de las anteriores.
Ver solución
Comentarios
Publicar un comentario