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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 11, 20262026-05-11T16:01:29+00:00 2026-05-11T16:01:29+00:00

char *p = new char[200]; char *p1 = p; char *p2 = &p[100]; delete

  • 0
char *p = new char[200];
char *p1 = p;
char *p2 = &p[100];
delete [] p1;

Btw this is not a test or anything i actually need to know this 🙂

  • 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-11T16:01:29+00:00Added an answer on May 11, 2026 at 4:01 pm
     // allocate memory for 200 chars
     // p points to the begining of that 
     // block
     char *p = new char[200];
     // we don't know if allocation succeeded or not
     // no null-check or exception handling
    
     // **Update:** Mark. Or you use std::no_throw or set_new_handler. 
     // what happens next is not guranteed
    
     // p1 now points to the same location as p
     char *p1 = p;
    
     // another pointer to char which points to the
     // 100th character of the array, note that
     // this can be treated as a pointer to an array
     // for the remaining 100-odd elements
     char *p2 = &p[100];
    
     // free the memory for 200 chars
     delete [] p1;
    
     // **Update:** Doug. T
     // [...] p and p2 are now pointing to freed memory 
     // and accessing it will be undefined behavior 
     // depending on the executing environment.
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

any problems with doing this? int i = new StreamReader(file.txt).ReadToEnd().Split(new char[] {'\n'}).Length
I have this code: Dim StringParts As New List(Of String)(OriginalString.Split(New Char() {\c}, StringSplitOptions.RemoveEmptyEntries)) When
\u4000\f.TrimEnd(new char[0]) is equal to \u4000 . I am passing an empty array, so
I assume that char* = string is the same to char* = new char[6]
Say I have the following C++: char *p = new char[cb]; SOME_STRUCT *pSS =
I have a 2 dimensional array, like so: char[,] str = new char[2,50]; Now,
If I declare a temporary auto deleted character buffer using std::auto_ptr<char> buffer(new char[n]); then
const char* title = old title; HWND hwnd = FindWindow(title, title); SetWindowText(hwnd, new title);
char *strtok(char *s1, const char *s2) repeated calls to this function break string s1
I get a char array from a socket : char[] cbuf = new char[3];

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.