Is it possible programming in C++ with no knowledge about pointers?
Rogerio Kioshi
Ranch Hand
Joined: Apr 12, 2005
Posts: 655
posted
0
Hi,
I'd like to know if it is possible programming in C++ without pointers knowledge.
SCEA 5 (part 1), SCBCD, SCWCD, SCJP, CLP, CLS
Anthony Aj Williams
author
Ranch Hand
Joined: Jun 10, 2011
Posts: 56
posted
0
Rogerio Kioshi wrote:I'd like to know if it is possible programming in C++ without pointers knowledge.
Yes, it's possible. You can pass everything by value or reference.
However, I would recommend learning about pointers. It's not that hard, and it means you can understand code others have written that use them, and it provides another technique you can use when it is appropriate.
Just simple plain answer is - It is possible but Hard.
You can use references instead of pointers, but at some point of time you need to jump into pointers world.
Everyday is a Learning phase! Hence ask "What have I learnt today?"