-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexemp_1.cpp
43 lines (36 loc) · 1.24 KB
/
exemp_1.cpp
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
#include <iostream> //biblioteca padrão
using namespace std;
int main(int argc, char ** argv)
//argc e argv = argumentos
{
/*int x;
long y;
short int z[10];*/
short int a[2][2][2];
/* cout << "tamanho de x:" << sizeof(x) <<endl;//sizeof() -> tamanho de() = tamanho do tipo da variavel
cout << "Posicao de x na memoria:" << &x << endl;//& = posição da memoria da variavel
cout << hex << &x << endl;
cout << endl;
//endl -> end line = \n
//cout -> c out = printf
cout << "tamanho de y:" << sizeof(y) <<endl;
cout << "Posicao de y na memoria:" << &y << endl;
cout << hex << &y << endl;
cout << endl;
for(int cont=0;cont<10;cont++)// em c++ se vc declarar uma variacel em uma função ( exemplo "for") essa varialvel só vai existir quando a função for executada
{
cout << "tamanho de z"<< cont <<":" << sizeof(z[cont]) <<endl;
cout << "Posicao de z na memoria:" << &z[cont] << endl;
cout << hex << &z[cont] << endl;
cout << endl;
}*/
for(int x =0 ; x<2 ; x++)
{
for(int y=0; y<2 ; y++)
{
cout << "elemento[" << x << "]["<< y << "]="
cout << &a[x][y] << "->" << sizeof(a[x][y]) << endl;
}
}
exit(0);
}