-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy path01_array_basic.cpp
45 lines (35 loc) · 1.18 KB
/
01_array_basic.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
44
45
/*
Array basics
*/
#include <iostream>
using namespace std;
int main()
{
// create array
int arr[] = {9, 55}; // array declaration & initilizations
cout << "Elements in array: " << sizeof(arr)/sizeof(int) << endl;
// create array
int arr1[10]; // array declaration
int arr2[10] = {5}; // array declaration & initilizations
// size of array
cout << "Size of array: " << sizeof(arr1) << endl;
int arr_total_elements = sizeof(arr1) / sizeof(int);
cout << "Total elements in array: " << arr_total_elements << endl;
// Adding 5 elements in array by user
cout << "Enter 5 elements in array: ";
for(int index = 0 ; index < 5; index++){
cin >> arr1[index];
}
// update a single index
arr2[5] = 56;
// print array
for(int index = 0 ; index < arr_total_elements; index++){
cout << arr1[index] << " "; // arr1 with remaining values as garbage values
}
cout << endl;
for(int index = 0 ; index < arr_total_elements; index++){
cout << arr2[index] << " "; // arr2 with remaining values as zeros
}
cout << endl;
return 0;
}