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

The Archive Base Latest Questions

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

This is a portion of my simple program string appData = getenv(APPDATA); const char

  • 0

This is a portion of my simple program

string appData = getenv("APPDATA");
const char *mypath= (appData+"\\MyApplication\\hello.txt").c_str();      
cout << mypath;  
// output: c:\users\xrobot\appdata\Roaming\Myapplication\hello.txt   
fstream file(mypath,ios::in);
ofstream filetemp;    
filetemp.open("world.bak");
cout << mypath;  
// output: É↕7

Why is mypath changed in that weird string ?

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

    You should use std::string as:

    std::string appData = getenv("APPDATA");
    std::string path = appData+"\\MyApplication\\hello.txt";
    

    then do this:

    const char * mypath = path.c_str();
    

    Note that you must not do this:

    const char* mypath = (appData+"\\MyApplication\\hello.txt").c_str();
    

    It is because expression on the right hand side is a temporary which gets destroyed at the end of the expression and mypath will continue to point to the destroyed object. It becomes a dangling pointer, in other words.

    —

    Why is mypath changed in that weird string ?

    Because in your posted code, mypath is a dangling pointer, using which invokes undefined behavior.

    This is how you should write the code:

    std::string appData = getenv("APPDATA");
    std::string mypath= appData+"\\MyApplication\\hello.txt";
    cout << mypath;  
    fstream file(mypath.c_str(),ios::in);
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am trying to make a simple alarm. in this code portion a take
Hey everyone. I've written this simple function that is supposed to load a portion
This portion of code checks if a number given (First element in a list)
Could someone explain to me what this portion of code means? repeat scroll 0
Visit this website. https://zapier.com/ See this portion of the website. I wan that same
following up from yesterday... This portion of the code does work. $(document).ready(function(){ $('#listMenu a').click(function
I'm looking through some code for learning purposes. I'm working through this portion of
With ASP .NET MVC3. In my controller I have this portion of code MasterMindDnetEntities
i don't understand how this happen. This is portion of my code.. int isGoal(Node
Let's say we have a code portion like this: IProduct product = ProductCreator.CreateProduct(); //Factory

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.