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

  • Home
  • SEARCH
  • 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 7800963
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 2, 20262026-06-02T00:48:15+00:00 2026-06-02T00:48:15+00:00

Hopefully this isn’t too basic of a question. I’m wondering if there’s a difference

  • 0

Hopefully this isn’t too basic of a question. I’m wondering if there’s a difference between doing

while (1) {
    int *a = new int(1);
    // Do stuff with a
}

as opposed to

int *a;
while (1) {
    a = new int(1);
    // Do stuff with a
}

In both cases the same number of objects are dynamically allocated. But does the fact that the int keyword is used inside the loop in the first example affect the memory used?

  • 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-02T00:48:17+00:00Added an answer on June 2, 2026 at 12:48 am

    The difference is scope.

    while (1) {
        int *a = new int(1);
        // Do stuff with a
    
        // Don't forget to delete a.
    }
    
    // Cannot access `a` here...
    

    Whereas:

    int *a;
    while (1) {
        a = new int(1);
        // Do stuff with a
    
        // Don't forget to delete a.
    }
    
    // Can access `a` here.
    

    You have a memory leak in both of your examples. Prefer smart pointers!

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

Sidebar

Related Questions

Hopefully this isn't too silly of a question. In MVC there appears to be
Hopefully this isn't too specific/small a question, but I was wondering if anyone knew
I'm fairly new to Joomla - so hopefully this isn't too simple. My client
I'm fairly new to Guice so hopefully this isn't an obvious question... I'm dealing
Hopefully this isn't too stupid but I want to make sure I'm doing this
Hopefully this question isn't as subjective as I think it may be. I have
This isn't a very simple question, but hopefully someone has run across it. I
Hopefully this question has an easy answer. It's probably something stupid I'm doing! In
Hopefully this isn't a dupe of another question, but I couldn't see it anywhere
Hopefully this isn't too difficult to follow. I'm currently working on a small timelogging

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.