Olaf "El Blanco"
2005-12-26 19:18:05 UTC
1. Leo el tema de estructuras de un PDF espectacular del lenguaje C.
2. Quiero practicar con algo simple y SIEMPRE hay problemas. En todos los
temas siempre hay algo que es distinto. O soy tonto para la programación o
mi manual es malo.
int main() {
struct billete billete_muestra, nuevo_billete;
// Carga datos para no cargarlos en cada prueba.
billete_muestra.numero = 1020;
billete_muestra.poblacion = "London" // AQUI VIENE EL ERROR DE TIPOS
billete_muestra.destino = "Inverness"; // AQUI VIENE EL ERROR DE TIPOS
billete_muestra.hora_salida = 0730;
billete_muestra.hora_llegada = 1320;
billete_muestra.fecha.dia = 28;
billete_muestra.fecha.mes = 12;
billete_muestra.fecha.ano = 2005;
billete_muestra.kilometros = 1100;
billete_muestra.precio = 80;
// nuevo_billete = carga_datos_billete();
// imprime_billete(nuevo_billete);
imprime_billete(billete_muestra);
getch();
return 0;
}
Así es como tengo echa la estructura:
struct ffecha
{
short int dia;
short int mes;
short int ano;
};
struct billete
{
int numero;
char poblacion[30];
char destino[30];
int hora_salida;
int hora_llegada;
struct ffecha fecha;
int kilometros;
int precio;
};
Feliz año a todos. Aparte de que en este año se conviertan en excelentes
programadores les deseo PAZ a todos los que han tenido y tienen paciencia
conmigo.
2. Quiero practicar con algo simple y SIEMPRE hay problemas. En todos los
temas siempre hay algo que es distinto. O soy tonto para la programación o
mi manual es malo.
int main() {
struct billete billete_muestra, nuevo_billete;
// Carga datos para no cargarlos en cada prueba.
billete_muestra.numero = 1020;
billete_muestra.poblacion = "London" // AQUI VIENE EL ERROR DE TIPOS
billete_muestra.destino = "Inverness"; // AQUI VIENE EL ERROR DE TIPOS
billete_muestra.hora_salida = 0730;
billete_muestra.hora_llegada = 1320;
billete_muestra.fecha.dia = 28;
billete_muestra.fecha.mes = 12;
billete_muestra.fecha.ano = 2005;
billete_muestra.kilometros = 1100;
billete_muestra.precio = 80;
// nuevo_billete = carga_datos_billete();
// imprime_billete(nuevo_billete);
imprime_billete(billete_muestra);
getch();
return 0;
}
Así es como tengo echa la estructura:
struct ffecha
{
short int dia;
short int mes;
short int ano;
};
struct billete
{
int numero;
char poblacion[30];
char destino[30];
int hora_salida;
int hora_llegada;
struct ffecha fecha;
int kilometros;
int precio;
};
Feliz año a todos. Aparte de que en este año se conviertan en excelentes
programadores les deseo PAZ a todos los que han tenido y tienen paciencia
conmigo.