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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T21:27:38+00:00 2026-05-26T21:27:38+00:00

I have a program which does concatenation. its like char *testConc(int a,..) Where a

  • 0

I have a program which does concatenation.

its like char *testConc(int a,..)
Where a indicates number of arguments are being passed for concatenation.
As legth keeps on changing is there is anything like constructor overloading in C

or any simple syntax which implements the functionality

  • 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-26T21:27:39+00:00Added an answer on May 26, 2026 at 9:27 pm

    C does not have function overloading capabilities. The syntax you have is called a variadic function, which can be used to perform what you asked.

    The textConc function would look something like this:

    char *textConc(int argc, ...)
    {
        va_list args;
        char *str = NULL;
        size_t len = 0;
    
        va_start(args, argc);
        while (argc--)
        {
            /* next string */
            const char *temp = va_arg(args, const char *);
            size_t size = strlen(temp);
            /* make room and copy over */
            str = realloc(str, len+size+1);
            memcpy(str+len, temp, size+1);
            /* new length */
            len += size;
        }
        va_end(args);
    
        return str;
    }
    
    int main(int argc, char **argv)
    {
        char *example = textConc(4, "Hello", "All", "good", "morning");
        puts(example);
        free(example);
        return 0;
    }
    

    If you use GCC, we can fake overloading completely, using a little help of macros.

    Rename textConc to textConcN and use the following macros:

    #define ARGCOUNT(...)  (sizeof((const char *[]){__VA_ARGS__})/sizeof(const char *))
    #define textConc(...) textConcN(ARGCOUNT(__VA_ARGS__), __VA_ARGS__)
    
    
    int main(int argc, char **argv)
    {
        /* notice, no more need for the number of arguments */
        char *example =  textConc("Hello", "All", "good", "morning");
        puts(example);
        free(example);
        return 0;
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a C++ program which does some processing on a char search[500] array.
I have a program which does a system call: latex somefile.latex This runs ok,
I have a program which I would like to run every X min the
I have a program which takes a long time to complete. I would like
I have a C++ program which does text processing on 40k records. We developed
Situation: I have a C# program which does the following: Generate many files (replacing
I have a program which generates its own Wireshark pcap-file (sort of a network
I have written a multithreaded program which does some thinking and prints out some
I have program which reads MSMQ using GetAllMessages but it does not remove messages
i have a statement in my program which does a comparision of elements of

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.