-
Notifications
You must be signed in to change notification settings - Fork 0
/
sc main.c
191 lines (137 loc) · 3.99 KB
/
sc main.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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
int main(void)
{
//valor é a variável que
//será apontada pelo ponteiro
int valor = 27;
//declaração de variável ponteiro
int *ptr;
//atribuindo o endereço da variável valor ao ponteiro
ptr = &valor;
printf("Utilizando ponteiros\n\n");
printf ("Conteudo da variavel valor: %d\n", valor);
printf ("Endereço da variavel valor: %x \n", &valor);
printf ("Conteudo da variavel ponteiro ptr: %x", ptr);
// sem * queremos acessar o endereço do ponteiro
// com * o valor desse ponteiro
exemplo aula 62
int main (voi d) {
int x = 10;
double y = 20. 50;
char z = 'a';
int *pX = &x;
double *pY = &y;
char *pZ = &z;
printf ("Endereco x = % i Valor x = % i \n", pX, *pX);
printf ("Endereco y = % i Valor de y = %f\n", pY, *pY) ;
printf ("Endereco z = % i Valor de Z = %c\n", pZ, *pZ);
fgets() // (nome,11,stdin); /leitura da string
// o stdin sinaliza que a leitura é feita do teclado
getchar () :
**********************************************************************************************************************
aula 63
atalho para // isso é a mesma coisa
/*
depois->hora = 20;
(*depois).minuto = 20;
(*depois). segundo = 20;*/
int main (void) {
struct horario{
int hora;
int minuto;
int segundo;
};
I
struct horario agora, *depois;
depois = &agora;
depois->hora = 20;
depois->mi nuto = 20;
depois->segundo = 20;
Int segundo
********************************************************************************
if(tmp != NULL) {
P_arrayMalloc = tmp;
}
else {
exit (-1);
}
*******************************************************************************
struct hor ar io agora, *depois;
depois = &agora;
depois->hora = 20;
depois->minuto = 80;
depois->segundo = 50;
int somatorio = 100;
struct horario antes;
antes.hora = somator io + depois->segundo;
antes.minuto = agora. hora + depois->minuto;
antes.segundo = depois->minuto+ depois->segundo
printf ("%i: % i : % i ", antes. hora, antes. minuto, antes. segundo) ;
getchar ();
*************************************************************************
estruturas que contem ponteiros
int main (void) {
struct horario{
int *pHora;
int *pMinuto;
int *pSegundo;
};
struct horario hoje;
int hora = 200;
int minuto = 300;
int segundo = 400;
hoje. pHora = &hora;
hoje. pMinuto = &minuto;
hoje. pSegundo = &segundo;
printf ("Hora %i\n", *hoje. pHora) ;
printf ("Minuto - %i\n", *hoje. pMinuto);
printf ("Segundo - %i\n", *hoje. pSegundo) ;
******************************************************************
FUNÇÕES 29
int main (void) {
float calcularAreaRetang (float x, float y);
//chamando função
calcularAreaRetang(10.0, 20.0);
printf("A area é : %f",area);
return 0;
}
float calcularAreaRetang (float x, float y){
float area = base * altura;
return area;
}
************************************************************************
31
void teste(void);
teste();
teste();
teste();
return 0;
}
void teste(void){
int variavellocalAutomatica = 2;
variavellocalAutomatica *= 2;
static int variavellocalEstatica = 2;
variavellocalEstatica *- 2;
printf("Local Automatica = %i\n", variavellocalAutomatica);
printf("Local Estatica = %i\n", variavellocalEstatica);
**************************************************34
printf ("Dig ite 2 numeros: ");
scanf ("%f", &a);
scanf ("%f", &b);
soma = somaDeDigitos (a, b);
printf ("A soma eh %f\n", soma);
system ("pause");
return 0;
}
float somaDeDigitos (float num1, float num2){
float valor Absoluto (float x);
if (num1 < 0) {
num1 = valor Absoluto (num1) ;
}
if (num2 < 0) {
num2 = valor Absoluto (num2);
}
return num1 + num2;
}
float valor Absoluto (float x) {
return x * -1;
}