What key concepts and nuances in C++ you know?
- by Narek
What kind of key points and concepts should a person know from C++ (and from programming in general) to be considered that he/she possesses C++ (and programming, in general) skills good.
e.g.
//Even if sizeof(T) may not be equal to 1, this code steps over array elements
T v[];
for(T *p = v ; *p != 0 ; p++)
cout<<*p<<endl;
P.S. I hope by exchanging this info we will help each other to know C++ and programing thechnics better by doing explicit our notion that we got from practice.