cplusplus
.com
TUTORIALS
REFERENCE
ARTICLES
FORUM
C++
Tutorials
Reference
Articles
Forum
Forum
Beginners
Windows Programming
UNIX/Linux Programming
General C++ Programming
Lounge
Jobs
Forum
Beginners
Ponters to objects
Ponters to objects
Sep 19, 2008 at 10:49am UTC
rifki
(1)
Car* MyFunction (Car *myCar);
HI Can someone explain fo a beginner what the function above is all about
Sep 19, 2008 at 12:06pm UTC
jsmith
(5804)
It is declaring a function named "MyFunction" that takes a pointer to a Car instance as parameter, does something (don't know what since I can't see the implementation and there are no comments), and returns a pointer to a Car instance.
Topic archived. No new replies allowed.