-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patharrays.cpp
28 lines (23 loc) · 1 KB
/
arrays.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
#include <iostream>
void recebe_array (int arr[]){
arr[3] = 88;
}
void recebe_variavel (int variavel){
variavel = 12;
}
int main(){
int numeros[] = {11, 22, 33, 44, 55};
//sizeoff
std::cout << "\nO tamanho do array em bytes é: " << sizeof(numeros) << '\n';
std::cout << "O tamanho do array[0] em bytes é: " << sizeof(numeros[0]) << '\n';
std::cout << "Então o tamanho do array é: " << sizeof(numeros) / sizeof(numeros[0]) << "\n\n";
// int variavel {66};
// std::cout << "\nO valor da variável antes da função é: " << variavel << '\n';
// recebe_variavel(variavel);
// std::cout << "O valor da variável depois da função é: " << variavel << '\n';
// //int multi[3][3] = {{5, 8 , 9}, {2, 7, 4}, {6, 0 , 1}};
// std::cout << "\nO valor de array de posição 3 antes da função é: " << numeros[3] << '\n';
// recebe_array( numeros );
// std::cout << "O valor de array de posição 3 depois da função é: " << numeros[3] << "\n\n";
return 0;
}