-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexercicio4.c
68 lines (53 loc) · 1.2 KB
/
exercicio4.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
56
57
58
59
60
61
62
63
64
65
66
67
68
//Bibliotecas
#include <stdio.h>
#include <locale.h>
// Função
int contadorString(char str[])
{
int cont = 0;
while (str[cont] != '\0')
{
cont++;
}
return cont;
}
int main()
{
// Regionalização (Desbuga palavras com acento)
setlocale(LC_ALL, "Portuguese_Brazil");
// Ponteiro - aponta a localização do registro existente
FILE *arq;
// Declaração das Variáveis
char string[200], produtos[10][30];
int cont = 0, i = 0, j, prod;
arq = fopen("estoque.txt", "r");
if (arq == NULL)
printf("Falha na abertura do arquivo\n");
else
while (fgets(string, 100, arq))
{
strcpy(produtos[cont], string);
cont++;
}
printf("\n - - - Produtos - - - \n\n");
for (i; i < cont; i++)
{
printf("%d ", i);
for (j = 1; j < contadorString(produtos[i]); j++)
{
printf("%c", produtos[i][j]);
}
}
printf("\n\nInforme o numero do produto desejado: ");
scanf("%d", &prod);
if (produtos[prod][0] == 'N')
{
printf("\n- Sem estoque");
}
else
{
printf("\n- Sim, em estoque");
}
fclose(arq);
return 0;
}