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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 6, 20262026-06-06T22:24:02+00:00 2026-06-06T22:24:02+00:00

I asked my friend if he can print from 1 to 1000 without using

  • 0

I asked my friend if he can print from 1 to 1000 without using loops or coditionals after being intrigued by this thread:

Printing 1 to 1000 without loop or conditionals

He replied with this program.

#include <iostream>
using namespace std;

static int n = 1;

class f {
public:

    f() {
        cout << n++ << endl;
    }
};

int main(int argc, char *argv[]) {
    f n [1000];
}

Running the program outputs ok. But when I close the program on netbeans it seems to be still running and consuming memory. Is the program causing memory leak? And can someone explain how this small program works?

  • 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-06T22:24:03+00:00Added an answer on June 6, 2026 at 10:24 pm

    But when I close the program on netbeans it seems to be still running and consuming memory

    When you close a program or it terminates, regardless of whether or not it has memory leaks, the memory will be released. I’m pretty sure you’re not terminating it correctly.

    Is the program causing memory leak?

    No, you can’t have a memory leak if you don’t use new or malloc (either directly or indirectly)

    And can someone explain how this small program works?

    f n [1000]; attempts to create a vector of 1000 f objects. When they get initialized, the constructor is called, printing n and incrementing it.

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

Sidebar

Related Questions

Yesterday my friend asked me a question about this query: select * from user
A friend asked me yesterday if this was possible on the iPhone. I took
My friend asked this question I am not sure why it is on my
My friend asked me this question today. How to test a vending machine and
A friend has asked me this, and I couldn't answer. He asked: I am
One of my friend was asked this question in an interview - You have
One of my friend showed me this program and asked me why is i
I friend asked me this today. Picasa Web has a cool (and frightening :-)
My friend asked this question to me - You are given a table with
I can enumerate many features of functional programming, but when my friend asked me

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.