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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T15:17:32+00:00 2026-05-27T15:17:32+00:00

How can I prepend char c to char* myChar ? I have c has

  • 0

How can I prepend char c to char* myChar? I have c has a value of "A", and myChar has a value of "LL". How can I prepend c to myChar to make "ALL"?

  • 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-27T15:17:32+00:00Added an answer on May 27, 2026 at 3:17 pm

    This should work:

    #include <string.h>    
    char * prepend(const char * str, char c)
    {
        char * new_string = malloc(strlen(str)+2);  // add 2 to make room for the character we will prepend and the null termination character at the end
        if (new_string) {
            new_string[0] = c;
            strcpy(new_string + 1, str);
        }
        return new_string;
    }
    

    Just remember to free() the resulting new string when you are done using it, or else you will have a memory leak.

    Also, if you are going to be doing this hundreds or thousands of times to the same string, then there are other ways you can do it that will be much more efficient.

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

Sidebar

Related Questions

So i have this picker: http://www.filamentgroup.com/lab/date_range_picker_using_jquery_ui_16_and_jquery_ui_css_framework/ Now, how can I prepend the date/daterange you
The method ObjectOutputStream.writeStreamHeader() can be overridden to prepend or append data to the header.
i have a form, which you can pretend is laid out like Windows Explorer:
How can I pre pend (insert at beginning of file) a file to all
Can a LINQ enabled app run on a machine that only has the .NET
I have a text area. I can set the text of it with $(#mytextarea).text(foo)
How can I prepend a SS: or ES: using AT&T Assembly Syntax without adding
How can I implement prepend and append with regular JavaScript without using jQuery?
I'd like to auto_prepend_file all my js files with: var SITE_ROOT = 'http://www.mydomain.com'; Can
how can i go abt setting up default decorators for all my forms &

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.