How to return result of function?

How to point to function result or return value in c++?

  • I know how to point to the entire function, but I have tried for hours to point to the result of a finished function, but could not. I am using mostly inline functions.

  • Answer:

    I think you are a bit confused and misguided in your imagining of how your program will/should work and what you are trying to do. That is, the reason you have been trying so hard and haven't found information elsewhere is because your design/idea is bad and not used. Return values from a function do what you are describing, and between either a return value or passing the things you want to return by reference in the function, that is all you need to do what you want to. Don't try to make it more complicated than that. string theReturn; name(&theReturn); or string theReturn = name(); For C style strings in C++, you would do: char* theReturn; name(&theReturn); delete[] theReturn; char* theReturn = name(); delete [] theReturn; In both cases, name would contain a new char[size];

BFK7TZ6ZFDYK7XBX2HBW5FM7WA at Yahoo! Answers Visit the source

Was this solution helpful to you?

Other answers

Simply return a pointer to something that won't go out of scope and be written over. Use malloc function to put it in place where returning a pointer can still be used to reference it.

Damianek

Related Q & A:

Just Added Q & A:

Find solution

For every problem there is a solution! Proved by Solucija.

  • Got an issue and looking for advice?

  • Ask Solucija to search every corner of the Web for help.

  • Get workable solutions and helpful tips in a moment.

Just ask Solucija about an issue you face and immediately get a list of ready solutions, answers and tips from other Internet users. We always provide the most suitable and complete answer to your question at the top, along with a few good alternatives below.