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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 14, 20262026-05-14T04:34:39+00:00 2026-05-14T04:34:39+00:00

What exactly happens, in terms of memory, when i declare something like: char arr[4];

  • 0

What exactly happens, in terms of memory, when i declare something like:
char arr[4];

How many bytes are reserved for arr?

How is null string accommodated when I ‘strcpy’ a string of length 4 in arr?

I was writing a socket program, and when I tried to suffix NULL at arr[4] (i.e. the 5th memory location), I ended up replacing the values of some other variables of the program (overflow) and got into a big time mess.

Any descriptions of how compilers (gcc is what I used) manage memory?

  • 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-14T04:34:40+00:00Added an answer on May 14, 2026 at 4:34 am

    sizeof(arr) bytes are saved* (plus any padding the compiler wants to put around it, though that isn’t for the array per se). On an implementation with a stack, this just means moving the stack pointer sizeof(arr) bytes down. (That’s where the storage comes from. This is also why automatic allocation is fast.)

    '\0' isn’t accommodated. If you copy “abcd” into it, you get a buffer overrun, because that takes up 5 bytes total, but you only have 4. You enter undefined behavior land, and anything could happen.

    In practice you’ll corrupt the stack and crash sooner or later, or experience what you did and overwrite nearby variables (because they too are allocated just like the array was.) But nobody can say for certain what happens, because it’s undefined.

    * Which is sizeof(char) * 4. sizeof(char) is always 1, so 4 bytes.

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

Sidebar

Related Questions

I have the following issue and I would like to know what exactly happens.
i'd like to know what exactly happens when i use reflection to call a
Can anyone explain, what exactly happens in the following line? java.lang.System.out.print(string + i); It
I am using MySQL and I would like to know what exactly happens (or
I hope this is programming-related enough. What exactly happens during the shutdown process of
What happens exactly when I launch a .NET exe? I know that C# is
Does anyone know exactly what happens when you change your Zend site at, say,
What exactly happens when i perform casting on reference types and values types and
What exactly happens when adding an object to a collection such as List? List<Person>
Can anyone tell me what exactly happens in a Recursion Program.. ??

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.