Skip to content

Files

Latest commit

d5482f2 · Jan 13, 2023

History

History

0x0F-function_pointers

README.md

img

Function Pointers

Intro

In this session, we will look at function pointers.

About

Remember in one of our Sessions we introduced pointers.

We mentioned that pointer are just variables that store the address of other variables of the same type as that of the Pointer in memory.

Lets Dive into it.

Resources

  1. Here is everything you need to know about pointers
  2. Funtion pointers in C
  3. Pointer to function
  4. Function pointers in Action
  5. Why function pointers

Learning objectives

At the end of this session, you should be able to explain to anyone the following concepts without the help of Google

  • What are function pointers and how to use them
  • What does a function pointer exactly hold
  • Where does a function pointer point to in the virtual memory

Quizes

Quiz