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

  • Home
  • SEARCH
  • 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 8495545
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 10, 20262026-06-10T23:36:11+00:00 2026-06-10T23:36:11+00:00

Consider this function: void useless() { char data[] = aaa; } From what I

  • 0

Consider this function:

void useless() {
   char data[] = "aaa";
}

From what I learned here, the "aaa" literal lives to the end of the program. However, the data[] (initialized by the literal) is local, so it lives only to the end of the function.

The memory is copied, so the program needs 4B for the literal, 4B for the data and sizeof(size_t) bytes for the pointer to data and sizeof(size_t) for the pointer of the literal – is this true?

If the literal has static storage duration, no new memory is allocated for the local literal by the second call – is this true?

  • 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-10T23:36:12+00:00Added an answer on June 10, 2026 at 11:36 pm
       char data[] = "aaa";
    

    This is not a string literal but just an array. So there’s no pointer there and memory is allocated only for the data.

    If the literal has static storage duration, no new memory is allocated
    for the local literal by the second call

    This is true for string literals like: char *s="aaa"; From the standard:

    2.13. Sttring literals
    […]An ordinary string literal has type “array of n const char” and static storage duration (3.7)

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

Sidebar

Related Questions

Consider this function template: template<typename T> unsigned long f(void *) { return 0;} Now,
I have faced the following interview question. Consider this function declaration: void quiz(int i)
Consider this function signature: Private Void TextBox1_TextChange(Object Sender, EventArgs e) As far as my
Consider this JavaScript code snippet: Object.prototype.log = function() { // here, you have a
Consider this template function: template<typename ReturnT> ReturnT foo(const std::function<ReturnT ()>& fun) { return fun();
consider this simple function def foo(l=[]): if not l: print List is empty else
Consider this (rather pointless) javascript code: function make_closure() { var x = 123, y
Consider this class: class test { public function __set($n, $v) { echo __set() called\n;
Consider this code: var img = new Image(); img.onload = function() { console.log(this.width); };
Consider: function Shape() { this.name = "Generic"; this.draw = function() { return "Drawing "

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.