Types of Allocation

Study types of allocation.

Introduction

In C++, we can allocate memory in two ways:

  • Static allocation
  • Dynamic allocation

Static allocation


In static ...