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 32409
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 10, 20262026-05-10T13:45:30+00:00 2026-05-10T13:45:30+00:00

When writing production-quality VC++ code, is the use of recursion acceptable? Why or why

  • 0

When writing production-quality VC++ code, is the use of recursion acceptable? Why or why not?

  • 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. 2026-05-10T13:45:31+00:00Added an answer on May 10, 2026 at 1:45 pm

    Is there a way to determine at what point I would encounter a stack overflow?

    Not really. A stack overflow happens when you exhaust the stack space – however…

    • The initial stack size can be changed programatically and may default to different amounts depending on your OS/compiler/etc
    • How much of it is already used up depends on what your app (and the libraries your app uses) has previously done – this is often impossible to predict
    • How much of the stack each call requires depends on what you do in your function. If you only allocate say 1 integer on the stack, you may be able to recurse an enourmous amount of times, but if you are allocating a 200k buffer on the stack, not so much.

    The only times I’ve ever hit one is in an infinite loop, or using the aforementioned 200k buffer.

    I find it far more prefereable for my app to just crash, than for it to loop forever using 100% CPU and have to be forcefully killed (this is a right PITA on a remote server over a bad connection as windows lacks SSH)

    A rough guideline: Do you think your recursive function is likely to call itself more than say 10,000 times consecutively? Or are you doing something dumb like allocating 200k buffers on the stack?

    If yes, worry about it.
    If no, carry on with more important things.

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

Sidebar

Related Questions

I'm writing some logging/auditing code that will be running in production (not just when
We're writing a large production system in Java, and I'm considering whether or not
Unit tests have different requirements than production code. For example, unit tests may not
Are there a lot of IT shops utilizing FxCop for writing production code? If
i am writing standalone java app for production monitoring. once it starts running the
I'm writing some code that has a lot of substitution. There's a list<char> productions
I'm writing system-level code for an embedded system without memory protection (on an ARM
Writing documentation in html requires some code examples. What to do with characters that
I'm writing and app to let the production people estimate costs for building some
I'm writing a stored procedure that should sync a table from our production environment

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.