-
Notifications
You must be signed in to change notification settings - Fork 0
/
AtivAlocacaoDinamica1.c
62 lines (48 loc) · 1.21 KB
/
AtivAlocacaoDinamica1.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
#include <stdio.h>
#include <stdlib.h>
#include <ctype.h>
int main()
{
char num[32];
int pos = 0, a = 0, numero, chave = 0, tamanho;
int *p;
p = (int *) malloc(5 * sizeof(int));
if (p == NULL){
printf("\nMemoria Insuficiente\n");
return 0;
}
tamanho = 5;
do{
printf("Digite um numero inteiro, ou uma letra para sair: ");
scanf("%s", num);
a = 0;
while(num[a] != '\0'){
if (num[a] >= 48 && num[a] <= 57){
a++;
}
else{
chave = 1;
break;
}
}
if (pos >= tamanho){
p = (int *) realloc(p, (tamanho + 5) * sizeof(int));
if (p == NULL){
printf("\nMemoria Insuficiente\n");
return 0;
}
tamanho += 5;
}
if (chave != 1){
numero = atoi(num);
p[pos] = numero;
pos++;
}
}while (chave == 0);
for (a=0; a<pos; a++){
printf("\n%d", p[a]);
}
printf("\nQuantidade de numeros inteiros: %d\n", pos);
free(p);
return 0;
}