cplusplus
.com
TUTORIALS
REFERENCE
ARTICLES
FORUM
C++
Tutorials
Reference
Articles
Forum
Forum
Beginners
Windows Programming
UNIX/Linux Programming
General C++ Programming
Lounge
Jobs
Forum
General C++ Programming
pointers
pointers
Jun 8, 2011 at 4:50pm UTC
ofun
(4)
what is meant by (int** x ) ?
thanks in advance
Jun 8, 2011 at 4:53pm UTC
quirkyusername
(792)
x is a pointer to a pointer to an int, the key is to read pointer arithmetic backwards. If you don't understand pointers have a read of this.
http://cplusplus.com/doc/tutorial/pointers/
Jun 8, 2011 at 4:54pm UTC
isnork
(37)
I think x is a pointer to an int pointer. Look here:
http://www.cplusplus.com/doc/tutorial/pointers/
(
Pointers to pointers
section)
Jun 8, 2011 at 4:55pm UTC
isnork
(37)
Seems quirkyusername was faster than me! :D
Jun 8, 2011 at 5:32pm UTC
ofun
(4)
thanks alot for your efforts :)
Topic archived. No new replies allowed.