-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexercicio12.c
60 lines (48 loc) · 1.2 KB
/
exercicio12.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
//Bibliotecas
#include <stdio.h>
#include <locale.h>
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 arquivo[50], conteudo[200];
int linhas = 0, finalizador = 1;
while (finalizador)
{
printf("Informe o nome do arquivo: ");
scanf("%s", &arquivo);
arq = fopen(arquivo, "r");
if (arq == NULL)
{
printf("\nErro na abertura do arquivo\n");
printf("\nDeseja tentar novamente? [1] Sim | [0] Nao: ");
scanf("%d", &finalizador);
fclose(arq);
getchar();
printf("\n");
}
else
{
while (fgets(conteudo, 200, arq))
{
linhas++;
}
finalizador = 0;
}
}
printf("\n-=-=-=- Leitura do Arquivo -=-=-=-");
if (linhas == 0)
{
printf("\n - Arquivo nao encontrado ou sem conteudo");
}
else
{
printf("\n - Linhas do Arquivo: %d", linhas);
}
fclose(arq);
printf("\n\n");
return 0;
}