function pointers in C++ code example
Example 1: c++ pointers
#include <iostream>
using namespace std;
int main () {
int var = 20; // actual variable declaration.
int *ip; // pointer variable
ip = &var; // store address of var in pointer variable
cout << "Value of var variable: ";
cout << var << endl; //Prints "20"
// print the address stored in ip pointer variable
cout << "Address stored in ip variable: ";
cout << ip << endl; //Prints "b7f8yufs78fds"
// access the value at the address available in pointer
cout << "Value of *ip variable: ";
cout << *ip << endl; //Prints "20"
return 0;
}
Example 2: Function pointer C++
void one() { cout << "One\n"; }
void two() { cout << "Two\n"; }
int main()
{
void (*fptr)(); //Declare a function pointer to voids with no params
fptr = &one; //fptr -> one
*fptr(); //=> one()
fptr = &two; //fptr -> two
*fptr(); //=> two()
return 0;
}
Example 3: c function pointer
//Declaration of a pointer to a function that takes an integer
//and returns an integer.
int (*f_ptr)(int);
//Assignment of a function foo to the function pointer f_ptr declared above.
f_ptr = foo;
//Calling foo indirectly via f_ptr, passing the return value of foo to r.
int r = f_ptr(v);
//Assigning an address of a function to the function pointer f_ptr,
//then calling foo by dereferencing the function pointer.
f_ptr = &foo;
int r = (*f_ptr)(v);