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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 28, 20262026-05-28T03:52:03+00:00 2026-05-28T03:52:03+00:00

How can i set a character array say of size 100 to whitespace and

  • 0

How can i set a character array say of size 100 to whitespace and then copy 10 charters to that same string from other.
For example:

there is one char array a[100]
To do : set all of it to whitespace

Now there is another array : b[10] (suppose this is filled with some string of length 9)
To do : copy this array to the previous one

What iam doing is : memset(a, ' ', sizeof(a));
350         memcpy(a,b, strlen(b))

But iam not getting space that i had set after 10 chars has been copied .

  • 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-28T03:52:03+00:00Added an answer on May 28, 2026 at 3:52 am

    Try the following:

    #include <stdio.h>
    #include <stdlib.h>
    #include <string.h>
    
    #define LENGTH 100
    
    int main(int argc, char *argv[])
    {
        char *a = NULL;
        char b[10] = "abcdefghi"; /* note that this has a trailing null character */
    
        a = malloc(LENGTH + 1);
        if (a) {
            *(a + LENGTH) = '\0';
            memset(a, ' ', LENGTH);
            fprintf(stdout, "a (before):\t[%s]\n", a);
            memcpy(a, b, sizeof(b) - 1); /* strip trailing null */
            fprintf(stdout, "a (after):\t[%s]\n", a);
            free(a);
        }
    
        return EXIT_SUCCESS;
    }
    

    Running this:

    $ gcc -Wall test.c
    $ ./a.out
    a (before):     [...100 spaces...........]
    a (after):      [abcdefghi...91 spaces...]                                                                                           ]
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

How can I form different combinations of string from set of character array in
When defining a custom operator from the limited set of single-character operators that can
I understand that we can set the various style attributes from code behind using
For JavaScript in most browsers*, you can read a character from a String by
Quick question. When you are accessing a character array, I know you can set
In Photoshop you can set a layer's blending mode to be Hue. If that
I have a datatype that's more or less a character array. Each space in
{(1,2),(3,4)}; How can I check that an input like the above is a set
I can set the width and height of my canvas by setting the width
I can set the relationship between View Model and view through following DataContext syntax:

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.