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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 3, 20262026-06-03T06:54:51+00:00 2026-06-03T06:54:51+00:00

Is there any difference between the two functions below isn’t in both cases the

  • 0

Is there any difference between the two functions below isn’t in both cases the address of local variable returned, but the using the f1() fn returns the correct value 4 but not f2(). Also in third case am I right about this that string constant are not stored in stack so when we return the pointer it will work fine. Also then where are string constant are stored?

int* f1()
{
  int* a=(int*)4;
  return a;
}

int* f2()
{
  int a=4;
  return &a;
}

char* f3()
{
  char* p="abcd";
  return p;
}
  • 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-03T06:54:52+00:00Added an answer on June 3, 2026 at 6:54 am

    There are differences between all of them:

    1. The first returns an int * with the value 4, note that it doesn’t point to a variable with the value 4, but to the address 4.
    2. The second returns a pointer to a variable that holds 4, but actually, this pointer is not valid, as it points to a local variable of an already returned function, and any usage of it will result in undefined behavior.
    3. The third returns a pointer to char (by definition), but actually this is a pointer to a string literal (by implementation). The problem with it, is that as the function return char * and not const char *, one may try to modify the return buffer, which will, again result in undefined behavior.
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I was wondering if there was any performance difference between the two approaches below.
Is there any difference in functionality between these two types of complete-functions in Vimscript?
Is there any difference between these two types of declarations performance-wise? local object =
Is there any difference between these two functions? I mean in-terms of the result
Is there any difference between these two LINQ statements: var query = from a
Is there any difference between following two ways of creating an object. Student s1
1)Is there any difference between these two keywords for the elements of collections??( Copy
Is there any difference between the 2 methods below for calculating c ... specifically
In Java, is there any difference between this two function declarations? public void foo()
Is there a simple way to plot the difference between two probability density functions?

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.