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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T05:58:33+00:00 2026-05-26T05:58:33+00:00

char *recvmsg(){ char buffer[1024]; return buffer; } int main(){ char *reply = recvmsg(); …..

  • 0
char *recvmsg(){
    char buffer[1024];
    return buffer;
}

int main(){
    char *reply = recvmsg();
    .....
}

I get a warning:

warning C4172: returning address of local variable or temporary

  • 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-26T05:58:33+00:00Added an answer on May 26, 2026 at 5:58 am

    You need to dynamically allocate your char array:

    char *recvmsg(){
       char* buffer = new char[1024];
       return buffer;
    }
    

    for C++ and

    char *recvmsg(){
       char* buffer = malloc(1024);
       return buffer;
    }
    

    for C.

    What happens is, without dynamic allocation, your variable will reside on the function’s stack and will therefore be destroyed on exit. That’s why you get the warning. Allocating it on the heap prevents this, but you will have to be careful and free the memory once done with it via delete[].

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

Sidebar

Related Questions

char* fun(char *s) { char buffer[50]; int i=0; while(*s){ if(isdigit(*s)){ buffer[i++]=*s; } s++; }
char * myFunction () { char sub_str[10][20]; return sub_str; } void main () {
... char A,M,Q,Q_1,count; int main() { system(cls); count=8; printf(%d,count); printf(\n\tEnter the Multiplicand(M) : );
char *getInput2(char *param) { int data_len; data_len=atoi(getenv(CONTENT_LENGTH)); char input[9]; fgets(input, 9, stdin); return strdup
char ParseCmd(char *buf,int len) { char *p; p = strtok(buf, ); return *p; }
char *values = 3 1 4 15; vector<int> array; I want to populate the
char c='c'; int i=10; double d =50; long l=30; String s=Goodbye; Are these statement
char* p = hello world; programmers usually assigns the address of an variable to
char *substring(char *text, int position, int length) { int i, j=0; char *temp ;
char in[100], *temp[10],var[10][10]; int i, n = 0, double val[10]; var[0][]=ANS; I want to

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.