Search Results

1
vote

Do you use NULL or 0 (zero) for pointers in C++?

Mostly personal preference, though one could make the argument that NULL makes it quite obvious that the object is a pointer which currently doesn't point to anything, e.g. void *pt …
2
votes

How to delete an array of pointers

Your array is not dynamically allocated, so you don't need to delete it. Each element, however, is pointing to a dynamically allocated object (from your comment): createfd …
1
vote

Why does C++ use pointers?

Most higher level languages don't have pointers per se, but they do use similar constructs. Here's an example. In C++, if you have something like: Foo myObject(); …