forked from chelinho139/Tutoriales-C
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtut31.c
59 lines (43 loc) · 1.18 KB
/
tut31.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
#include <stdio.h>
//Copyright Chelin Tutorials. All Rights Reserved
//http://chelintutorials.blogspot.com/
//Estructuras y Funciones
//nueva manera
typedef struct video{
char titulo [41];
int visitas;
float tiempo;
}video_t;
//typedef struct video video_t; vieja manera
//Esta funcion me crea un video
video_t crear_video(){
//creo el nuevo video en blanco
video_t nuevo_video;
//asigno el titulo
printf("\ningrese el nombre del video: ");
fflush(stdin);
gets(nuevo_video.titulo);
//asigno el numero de visitas
printf("\ningrese el numero de visitas: ");
fflush(stdin);
scanf(" %d",&nuevo_video.visitas);
//asigno el tiempo
printf("\ningrese el tiempo del video: ");
fflush(stdin);
scanf(" %f",&nuevo_video.tiempo);
//devuevlo el video
return nuevo_video;
}
//Esta funcion sirve para imprimir un video
void imprimir_video(video_t video){
printf("%s , timepo: %g , visitas: %d \n",video.titulo,video.tiempo,video.visitas);
}
int main(void){
//creo 2 videos
video_t v1 = crear_video();
video_t v2= crear_video();
//imprimimo los videos
imprimir_video(v2);
imprimir_video(v1);
return 0;
}