Home > Backend Development > C++ > body text

In C language, Heap overflow and Stack overflow refer to when a program exceeds its allocated boundaries when using heap memory or stack memory.

王林
Release: 2023-09-11 13:41:02
forward
1383 people have browsed it

在C语言中,堆溢出(Heap overflow)和栈溢出(Stack overflow)是指程序在使用堆内存或栈内存时超出了其分配的边界

Heap overflow

The heap is used to store dynamic variables. It is an area of ​​process memory. malloc(), calloc(), resize() all these built-in functions are commonly used to store dynamic variables.

When heap overflow occurs -

A) If we allocate dynamic large number variable -

int main() {
   float *ptr = (int *)malloc(sizeof(float)*1000000.0));
}
Copy after login

B) If we allocate memory continuously and do not release it after use.

int main() {
   for (int i=0; i<100000000000; i++) {
      int *p = (int *)malloc(sizeof(int));
   }
}
Copy after login

Stack Overflow

The stack is a last-in-first-out data structure. It is used to store local variables used inside functions. Parameters are passed through this function and its return address.

If a program consumes more memory space, a stack overflow will occur due to the limited stack size in the computer's memory.

Stack overflow occurs when-

C) If a function is called recursively by itself an infinite number of times, then the stack will not be able to store a large number of local variables, so a stack overflow will occur-

void calculate(int a) {
   if (a== 0)
      return;
      a = 6;
      calculate(a);
}
int main() {
   int a = 5;
   calculate(a);
}
Copy after login

D) If you declare a large number of local variables or declare a large-dimensional array or matrix, it may cause stack overflow.

int main() {
   A[20000][20000]
}
Copy after login

The above is the detailed content of In C language, Heap overflow and Stack overflow refer to when a program exceeds its allocated boundaries when using heap memory or stack memory.. For more information, please follow other related articles on the PHP Chinese website!

source:tutorialspoint.com
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template