vote up 18 vote down star
16

What are the often misunderstood concepts in c++?

flag
show 3 more comments

36 Answers

prev 1 2
vote up 1 vote down
  1. Allocation of objects, stack or heap.
  2. Use of const.
  3. Use of friend
link|flag
vote up 1 vote down

NULL is always zero.

Many confuse NULL with an address, and think therefor it's not necessarily zero if the platform has a different null pointer address.

But NULL is always zero and it is not an address. It's an zero constant integer expression that can be converted to pointer types.

link|flag
vote up 0 vote down

C++ or C/C++? I would say for both the most misunderstood parts are memory management and pointers. The former because people don't free appropriately (too early or not at all!) and the latter because a lot of people just don't "get" pointers (either in the pass by reference "guise" or in general in something like a linked list).

link|flag
vote up 0 vote down
  1. The difference between pointer (*) and reference (&)
  2. Accesing multi dimentional arrays using pointers.
  3. Using * to acess the value of a pointer - i.e. *ptr = 5
  4. When to release allocated memory.
link|flag
vote up 0 vote down

Why is A[b] the same thing as b[A]?

Ok, not really a COMMON question, but it came up in a class I was teaching once...

link|flag
show 2 more comments
vote up -2 vote down

A big one is that the languages are not 100% syntactically compatible. C++ is fully link compatible with C, but some C++ style syntax will generate a complier error in C. Some compilers aren't picky and don't follow the C standard to the letter. The basics of these need to be learned when moving from one language to the other. Note I haven't read the latest C standard, but last I knew this was true.

link|flag
show 5 more comments
prev 1 2

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.