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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 13, 20262026-06-13T02:57:34+00:00 2026-06-13T02:57:34+00:00

Possible Duplicate: Where are literal strings placed and why can I return pointers to

  • 0

Possible Duplicate:
Where are literal strings placed and why can I return pointers to them?

Suppose I have some code like the following:

char *string;

void foo(char *s)
{
   string = s;
}

foo("bar");

What is happening internally? Since I have not explicitly declared what I am passing into foo, e.g by doing something like.

char s[] = "bar";
foo(s);

will “bar” always be stored in the same memory location? Does is automatically have some memory allocated for it? If so, does this address remain the same, so that “string” always points to a char array which holds “bar”?

I suppose the more general question I am asking is: What happens internally when you pass an argument to a function without explicitly assigning it into some variable first, and then passing in that variable.

  • 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-13T02:57:35+00:00Added an answer on June 13, 2026 at 2:57 am
    char *string;
    
    void foo(char *s)
    {
       string = s;
    }
    
    foo("bar");
    

    "bar" is a string literal. String literals have static storage duration and their lifetime (as all objects with static storage duration) is the entire execution of the program.

    So basically there is a "bar" array object somewhere in your memory at the startup of your program and you are passing a pointer to its first element during the execution of your program which is totally fine.

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

Sidebar

Related Questions

Possible Duplicate: C/C++, can you #include a file into a string literal? I have
Possible Duplicate: Multiline strings in Javascript In Ruby you can do something like this:
Possible Duplicate: difference between string object and string literal Let's say I have two
Possible Duplicate: In C++, Why can't I write to a string literal while I
Possible Duplicate: Warning: format not a string literal and no format arguments I have
Possible Duplicate: Can I convert a C# string value to an escaped string literal
Possible Duplicate: Self-references in object literal declarations I have an object literal which is
Possible Duplicate: Can you define “literal” tables in SQL? Occasionally I find myself in
Possible Duplicate: Self-references in object literal declarations Hey Guys, i have a small question
Possible Duplicate: Can I use a binary literal in C or C++? I am

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.