Curso de Programación en C/Prog87
Ir a la navegación
Ir a la búsqueda
Prog87
1 #include <stdio.h>
2 #include <string.h> /* para usar strcat() */
3
4 #define TAMANO 80
5
6 int main( void )
7 {
8 char flor[TAMANO],
9 agregado[] = "s huelen como zapatos viejos.";
10
11 printf( "¿Cuál es su flor preferida? " );
12 gets( flor );
13 strcat( flor, agregado ); //strcat() Añade un string a otro
14 puts( flor );
15
16 return 0;
17 }
Resultado
[rrc@llawyr CClase]$ gcc -Wall -o Prog87 Prog87.c [rrc@llawyr CClase]$ ./Prog87 ¿Cuál es su flor preferida? Anthurium Anthuriums huelen como zapatos viejos. [rrc@llawyr CClase]$