Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8616117
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 12, 20262026-06-12T05:32:31+00:00 2026-06-12T05:32:31+00:00

Possible Duplicate: In which cases is alloca() useful? I recently happened to see the

  • 0

Possible Duplicate:
In which cases is alloca() useful?

I recently happened to see the use of alloca() function. A google search told me that it’s used to allocate space on the stack. I’m not able to grab the application for it ? Also, are there any pitfalls in using this ?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-12T05:32:32+00:00Added an answer on June 12, 2026 at 5:32 am

    The function alloca was never part of any C standard. It has typically been supplied by vendors as an extension to achieve something like the variable-length arrays (“VLA”s) in C99:

    void foo(int n)
    {
        char arr99[n];            // C99-style VLA
    
        char * p89 = alloca(n);   /* C89 work-around using "alloca" */
    
        // Usage:
        for (int i = 0; i != n; ++i)
        {
            arr99[i] = p89[i] = '0' + i;
        }
    
    }  // memory is freed automatically here
    

    In both cases, the memory is automatically managed and released at the end of the function.

    The use of alloca is mentally burdensome, since it doesn’t quite fit the C object model. For example, even if you allocate the memory in a nested scope, it remains live until the end of the enclosing function, not just the block. VLAs have much better semantics, and can be queried with a dynamic sizeof, whereas there is no equivalent mechanism for alloca-allocated memory.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Possible Duplicate: Prefer composition over inheritance? I wonder, why (or in which cases) should
Possible Duplicate: Difference Between Equals and == in which cases equals() works exactly like
Possible Duplicate: Can every recursion be converted into iteration? Can always or which cases
Possible Duplicate: What do parentheses surrounding a JavaScript object/function/class declaration mean? Recently discussing with
Possible Duplicate: Which kind of pointer do I use when? There are many pros
Possible Duplicate: Which is faster/best? SELECT * or SELECT column1, colum2, column3, etc I
Possible Duplicate: Which is more correct: <h1><a>..</a></h1> OR <a><h1>..</h1></a> Semantically, which is more correct:
Possible Duplicate: Which collection for storing unique strings? I am currently using a Dictionary<string,
Possible Duplicate: Which is faster/best? SELECT * or SELECT column1, colum2, column3, etc. I
Possible Duplicate: C++ STL: Which method of iteration over a STL container is better?

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.