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

The Archive Base Latest Questions

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

This is an allocation on the stack: char inStack[10]; // and MyStruct cl; And

  • 0

This is an allocation on the stack:

char inStack[10]; 
// and 
MyStruct cl;

And this should be allocated in the heap:

char* inHeap = new char[10];
// and
MyClass cl = new MyClass();

What if MyClass contains a char test[10] variable? Does this:

MyClass cl = new MyClass()

…mean that the 10 byte long content of MyClass::test is allocated in the heap instead of the stack?

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

    It would be allocated inside the object, so that if the object is on the heap, the array will be on the heap; if the object is on the stack, the array will be on the stack; if the object is in static memory in the executable, the array will be there also.

    In C++, members of objects are part of the object itself. If you have the address of the object and it’s size, you know that all the members of the class will be somewhere within the range [address, address + size), no matter where in memory that address actually is (heap, stack, etc).

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

Sidebar

Related Questions

I tried to understand how this allocation works in c++ : Test other =
Just wondering if it's safe to cast like this: char **cpp; // ... allocation
The new command allocates memory in the heap to store an object. Static allocation
I want to measure time memory allocation using this code: long AForMemory = DateTime.Now.Ticks;
I am learning C++. I am trying to learn this dynamic memory allocation. In
I'm trying to make a new CLLocation subclass. This is the skeleton: #import <UIKit/UIKit.h>
What is the difference between this: somefunction() { ... char *output; output = (char
I examined about stack unwinding on thread procedure in win32 environment. My test code
So I've been thinking about PIMPL and stack allocation. I've been writing a library
I have this question regarding memory allocation and deallocation in c++. Here is the

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.