-
Notifications
You must be signed in to change notification settings - Fork 0
/
ex_proposto9.4.c
101 lines (67 loc) · 2.68 KB
/
ex_proposto9.4.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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
/* ============================================================================
Linguagem C, o curso definitivo
Módulo 9 Exercício 4
Título da Aula
Autor: Msc. Eng. Rogério Souza da Silva
Data: Janeiro de 2022
============================================================================ */
/* ========================================================================= */
/* --- Bibliotecas --- */
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
/* ========================================================================= */
/* Protótipo da Função */
/* Função Principal */
int main()
{
FILE *arq;
unsigned char *palloc;
unsigned long int num_bytes=0, i=0;
int chr;
arq = fopen("code.txt","r");
if (arq==NULL)
{
puts("Falha ao abrir o arquivo.");
exit(0);
}
puts("Arquivo aberto com sucesso.");
while ((chr =fgetc(arq))!=EOF)
num_bytes++;
printf("Tamanho do arquivo: %lu bytes\n",num_bytes);
rewind(arq); /* ponteiro retorna ao início do arquivo */
/* aloca memória de acordo com o tamanho do arquivo */
palloc = (unsigned char *) malloc(num_bytes*sizeof(char));
if (palloc == NULL)
{
puts("Memória insuficiente.");
exit(0);
}
/* armazena os caracteres */
while((chr = fgetc(arq))!=EOF)
{
if(i<=num_bytes) palloc[i] = (unsigned char) chr;
i++;
}
for(i=0;i<num_bytes;i++)
printf("%c",palloc[i]);
fclose(arq);
free(palloc);
} /* end main */
/* ============================================================================
_
/ \
|oo >
_\=/_
___ # / _ \ #
/<> \ \\//|/.\|\\//
_|_____|_ \/ \_/ \/
| | === | | |\ /|
|_| 0 |_| \_ _/
|| 0 || | | |
||__*__|| | | |
|* \___/ *| []|[]
/=\ /=\ /=\ | | |
________________[_]_[_]_[_]_________/_]_[_\_______________________________
============================================================================ */
/* --- Final do Programa --- */