pointers and arrays and functions c++ code example
Example 1: array of pointers in cpp complete course
#include <iostream>
using namespace std;
const int MAX = 3;
int main () {
int var[MAX] = {10, 100, 200};
int *ptr[MAX];
for (int i = 0; i < MAX; i++) {
ptr[i] = &var[i];
}
for (int i = 0; i < MAX; i++) {
cout << "Value of var[" << i << "] = ";
cout << *ptr[i] << endl;
}
return 0;
}
Example 2: arrays and pointer in c++
#include<iostream>
int main()
{
int array[] {1,2,3};
std::cout<<array[0]<<std::endl;
std::cout<<array[1]<<std::endl;
std::cout<<array[2]<<std::endl;
int *array_ptr ={array};
std::cout<<array_ptr[0]<<std::endl;
std::cout<<array_ptr[1]<<std::endl;
std::cout<<array_ptr[2]<<std::endl;
std::cout<<*array<<std::endl;
std::cout<<*(array+1)<<std::endl;
std::cout<<*(array+2)<<std::endl;
std::cout<<*array_ptr<<std::endl;
std::cout<<*(array_ptr+1)<<std::endl;
std::cout<<*(array_ptr+2)<<std::endl;
return 0;
}