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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 10, 20262026-05-10T19:47:07+00:00 2026-05-10T19:47:07+00:00

I have this piece of code (summarized)… AnsiString working(AnsiString format,…) { va_list argptr; AnsiString

  • 0

I have this piece of code (summarized)…

AnsiString working(AnsiString format,...) {     va_list argptr;     AnsiString buff;      va_start(argptr, format);     buff.vprintf(format.c_str(), argptr);      va_end(argptr);     return buff; } 

And, on the basis that pass by reference is preferred where possible, I changed it thusly.

AnsiString broken(const AnsiString &format,...) {     /* ... the rest, totally identical ... */ } 

My calling code is like this:

AnsiString s1 = working("Hello %s", "World"); // prints "Hello World" AnsiString s2 = broken("Hello %s", "World");  // prints "Hello (null)" 

I think this is due to the way va_start works, but I’m not exactly sure what’s going on.

  • 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. 2026-05-10T19:47:08+00:00Added an answer on May 10, 2026 at 7:47 pm

    If you look at what va_start expands out to, you’ll see what’s happening:

    va_start(argptr, format);  

    becomes (roughly)

    argptr = (va_list) (&format+1); 

    If format is a value-type, it gets placed on the stack right before all the variadic arguments. If format is a reference type, only the address gets placed on the stack. When you take the address of the reference variable, you get the address or the original variable (in this case of a temporary AnsiString created before calling Broken), not the address of the argument.

    If you don’t want to pass around full classes, your options are to either pass by pointer, or put in a dummy argument:

    AnsiString working_ptr(const AnsiString *format,...) {     ASSERT(format != NULL);     va_list argptr;     AnsiString buff;      va_start(argptr, format);     buff.vprintf(format->c_str(), argptr);      va_end(argptr);     return buff; }  ...  AnsiString format = 'Hello %s'; s1 = working_ptr(&format, 'World'); 

    or

    AnsiString working_dummy(const AnsiString &format, int dummy, ...) {     va_list argptr;     AnsiString buff;      va_start(argptr, dummy);     buff.vprintf(format.c_str(), argptr);      va_end(argptr);     return buff; }  ...  s1 = working_dummy('Hello %s', 0, 'World'); 
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have this piece of code #include <stdio.h> #include <stdlib.h> #include <stdint.h> #include <string.h>
I have this piece of code: $(#faq).click(function () { var url = $.get(faq, {
I have this piece of code: var myObj = function () { this.complex =
I have this piece of code I'm trying to get to display but no
I have a piece of code looking like this : TAxis *axis = 0;
I have this piece of code that works very well and gives me the
I have this piece of Javascript and it just won't work. I allready checked
I have a piece of XML that is structured similar to this: <root> <score
I have this code in jQuery, that I want to reimplement with the prototype
I have this idea for a free backup application. The largest problem I need

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.