-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCliente.c
45 lines (40 loc) · 935 Bytes
/
Cliente.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
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
typedef struct cliente {
int id;
char nome[30];
} Cliente;
Cliente* criarCliente(int id) {
Cliente* novo = (Cliente*)malloc(sizeof(Cliente));
if(novo!=NULL) {
setbuf(stdin, NULL);
printf("Digite o nome do novo cliente >> ");
scanf("%30[^\n]", novo->nome);
novo->id = id;
}
setbuf(stdin, NULL);
return novo;
}
Cliente* fcriarCliente(int id, char* nome) {
Cliente* novo =(Cliente*)malloc(sizeof(Cliente));
if(novo!=NULL){
novo->id = id;
strcpy(novo->nome, nome);
}
return novo;
}
void editarCliente(Cliente* cliente){
if(cliente!=NULL) {
printf("Digite o novo nome do cliente >> ");
scanf("%30[^\n]", cliente->nome);
setbuf(stdin, NULL);
} else
printf("Cliente inexistente!\n");
}
void imprimeCliente(Cliente* cliente) {
if(cliente!=NULL)
printf("%d: %s\n", cliente->id, cliente->nome);
else
printf("Cliente inexistente!\n");
}