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
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:
- How To Find Epsnepal Klt Result?Best solution by Yahoo! Answers
- How To Check Post Jamb Result In Kwarapoly?Best solution by ngscholars.com
- How To Check Spm Trial Result?Best solution by Yahoo! Answers
- how to call a function in Python in another function?Best solution by Yahoo! Answers
- How can I deserialize JSON {name, value} in C#?Best solution by Stack Overflow
Just Added Q & A:
- How many active mobile subscribers are there in China?Best solution by Quora
- How to find the right vacation?Best solution by bookit.com
- How To Make Your Own Primer?Best solution by thekrazycouponlady.com
- How do you get the domain & range?Best solution by ChaCha
- How do you open pop up blockers?Best solution by Yahoo! Answers
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.