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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T14:17:53+00:00 2026-05-27T14:17:53+00:00

i am working using visual c++ on windows 7. and getting the error error:

  • 0

i am working using visual c++ on windows 7. and getting the error error: Run-Time Check Failure #2 – Stack around the variable ‘manager’ was corrupted. what could be the solution ?

#include <iostream>
using namespace std;

class employee
{
    char  name[30];
    float age;
public:
    void getData(void);
    void putData(void);
};
void employee ::getData(void)
{
    cout<<"entr name";
    cin>> name;
    cout<<"entr age";
    cin>>age;
}
void employee ::putData(void)
{
    cout<<"name:"<< name<<endl;
    cout<<"age"<<age<<endl;
}
const int size=3;
int main()
{
    employee manager[size];
    for(int i=0; i<size; i++)
    {
        cout <<endl<<"details of manager "<<i++<<endl;
        manager[i].getData();
    }
    cout<<endl;
    for(int i=0;i<size;i++)
    {
        cout<< endl << "manager "<< i++ << endl;
        manager[i].putData();
    }
    getchar();
    return 0;
}
  • 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-05-27T14:17:53+00:00Added an answer on May 27, 2026 at 2:17 pm
    employee manager[size];
    for(int i=0; i<size; i++)
    {
        cout <<endl<<"details of manager "<<i++<<endl;
        // PROBLEM IS HERE ----------->>   ^^^^^
        manager[i].getData();
    }
    

    When you increment i on the last iteration it becomes equal to the size and manager[i] is out of bounds. I think you meant not to increment i inside the loop, because you not only get out of bounds but also skip managers at odd positions. So here’s what I suppose you intended:

    for(int i=0; i<size; i++)
    {
        cout <<endl<<"details of manager "<<i<<endl;
        manager[i].getData();
    }
    

    Same refers to the other loop

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

Sidebar

Related Questions

I've been working on a simple windows program using Visual C++ 2010 express on
I'm working with winforms on Windows 7, using C# in Visual Studio 2010. Currently
Does anybody have an example of working with database using Visual C++ and OLEDB?
I'm using Visual Basic 6 for a legacy project and it's been working fine.
I am working with VS 2005 and using visual basic for coding. How do
I'm using Visual Studio 2008. I'm currently working with WPF and I'm using Edit->Format
I'm working on an designer-heavy application (using Visual C++ 2.0, but a C# solution
I'm currently working on a small web application using Visual Studio 2008 Express. I'm
I'm working with an OCR project which is developed using Visual C++ on .net
I am using the Visual Studio 2010 RC. Sometimes when I am working on

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.