forked from bangoc/c-basic
-
Notifications
You must be signed in to change notification settings - Fork 0
/
vd6-1.c
41 lines (37 loc) · 931 Bytes
/
vd6-1.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
/*
(C) Nguyen Ba Ngoc 2021
*/
#include "ext/io.h"
#include "cgen.h"
#include <stdio.h>
#include <stdlib.h>
typedef struct contact {
char *number;
char *fullname;
} *contact_t;
void print_contact(gtype v) {
printf("Chi tiết liên lạc: \n");
printf("Sđt: %s\n", ((contact_t)(v.v))->number);
printf("Họ và tên: %s\n", ((contact_t)(v.v))->fullname);
}
int main() {
gtype v;
printf("Nhập 1 số nguyên: ");
scanf("%ld", &v.l);
printf("Bạn đã nhập: %ld\n", v.l);
printf("Nhập 1 số thực: ");
scanf("%lf", &v.d);
printf("Bạn đã nhập: %f\n", v.d);
contact_t c = calloc(1, sizeof(struct contact));
printf("Nhập sđt: ");
clear_stdin();
remove_tail_lf(cgetline(&(c->number), 0, stdin));
printf("Nhập họ và tên: ");
remove_tail_lf(cgetline(&(c->fullname), 0, stdin));
v.v = c;
print_contact(v);
free(c->number);
free(c->fullname);
free(c);
return 0;
}