About C/C++ stack allocation

前端 未结 7 686
一个人的身影
一个人的身影 2020-12-15 12:44

While studying C++ (and C) I had some particular doubts regarding the working of stack allocation, that I can\'t find a solution to:

  1. Does stack allocation c

7条回答
  •  时光取名叫无心
    2020-12-15 13:30

    The answer to your first question is No. Stack is not allocated from the heap at all.

    You should read What and where are the stack and heap first to understand the basic concepts.

提交回复
热议问题