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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 2, 20262026-06-02T05:10:05+00:00 2026-06-02T05:10:05+00:00

When I try compiling the following C code, i get a bus error. I’m

  • 0

When I try compiling the following C code, i get a bus error.
I’m guessing it has something to do with the way I have called memcpy, however I cant figure it out.
Any help would be greatly appreciated!

#include<stdio.h>
#include<stdlib.h>
#include<string.h>

int main()
{

    char *p = (char*)malloc(sizeof(char)*11); 
    // Assign some value to p
    p = "hello";


    char *name = (char*)malloc(sizeof(char)*11);
    // Assign some value to name
    name = "Bye";

    memcpy (p,name,sizeof(char)*10); // Problem begins here
    return 0;
}
  • 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-06-02T05:10:07+00:00Added an answer on June 2, 2026 at 5:10 am

    Here p points to a string literal after your assignment, NOT to your allocated memory!

    Then you try to write into that memory with memcpy.

    Many C compilers allocate string literals in read-only memory, hence the bus error.

    To fix your problem, you should copy the characters h, e, l, l, and o into the space you allocated for p in the first line of main, using strncpy. This keeps p pointing to the memory you allocated yourself; the later memcpy will be fine (provided you don’t overflow your buffer of course).

    Note that in general when you assign to a string variable directly you are making the variable point to a different memory address. In your code you have allocated space for a couple of strings but when you assign string literals to the variables, you are changing the location to which they point, causing a memory leak.

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

Sidebar

Related Questions

When compiling C++ with the -fdump-tree-gimple option (GCC 4.6.1), I get code that has
I have ubuntu machine and compiling objective-c using GNUStep. I wrote the following code:
Try the following code: s = '#value#' puts s.gsub('#value#', Regexp.escape('*')) # => '\*' puts
My following code fails with ...has already been registered as a source on the
I am getting the following error message when compiling or attempting to run my
I have the following code: import java.util.*; public class SellTransaction extends Transaction { private
I have the following warnings while compiling an openFrameworks 007 project on Visual Studio
I have the following code #include <iostream> #include <vector> using namespace std; int distance(vector<int>&
So I have the following code: File txtFileDir = new File(MAIN_DIR + test); FilenameFilter
I try to compile and link my application in 2 steps : Compiling: g++

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.