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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T05:57:20+00:00 2026-05-23T05:57:20+00:00

I have a string I am trying to print. when I used cout ,

  • 0

I have a string I am trying to print. when I used cout, it outputs perfectly but using printf leaves it mangled.

Here is the code:

int main ( int argc, char *argv[] )
{
    // Check to make sure there is a single argument
    if ( argc != 2 )
    {
        cout<<"usage: "<< argv[0] <<" <filename>\n";
        return 1;
    }

    // Grab the filename and remove the extension
    std::string filename(argv[1]);
    int lastindex = filename.find_last_of("."); 
    std::string rawname = filename.substr(0, lastindex);

    cout << "rawname:" << rawname << endl;
    printf("rawname: %s", rawname);

}

The cout gives me “rawname: file”
The printf gives me “rawname: ” and then a bunch of squiggly characters

  • 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-23T05:57:20+00:00Added an answer on May 23, 2026 at 5:57 am

    it’s because rawname is defined as a std::string. You need to use

    printf("rawname: %s", rawname.c_str());

    The reason is that printf with the %s is expecting a null terminated C string in memory. Whereas a std::string stl string isn’t exactly raw – it eventually null terminates in your situation, not sure if that’s even a guarantee, since the length is internally managed by stl container class.

    Edit:

    As pointed out in a comment, internally it’s guaranteed to be null terminated. So what you’re seeing as ‘squiggly lines’ is an output of all the allocated but not utilized (or initialized) memory in that string up until the null terminator character.

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

Sidebar

Related Questions

I'm trying to have a kind of dirty underline effect using a string of
I am trying to manipulate a string using Jython, I have included below an
I'm trying to pass a string to chdir(). But I always seem to have
I have this code: filenames=[file1,FILE2,file3,fiLe4] def alignfilenames(): #build a string that can be used
I'm trying to copy a string using 16-bit assembly. I have (among other things)
I'm trying to parse a simple JSON string, but I'm not used to do
I have this string containing a large chunk of html and am trying to
I have a string: [\n['-','some text what\rcontains\nnewlines'],\n\n trying to parse: Regex.Split(@[\n['-','some text what contains
I have a string which is like this: this is "a test" I'm trying
I am trying to learn regex. I have the string: $x = 5ft2inches; How

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.