1
vote
9answers
197 views
how to allocate a 2D array of pointers in c++
I'm trying to make a pointer point to a 2D array of pointers. what is the syntax and how would i access elements.
1
vote
3answers
58 views
Accessing contents of char** on a windows x64 cause exception
The following piece of code is causing an exception on a windows vista x64 and i can't figure why.
size_t pBaseAddr;
char *lpszFuncName;
IMAGE_EXPORT_DIRECTORY *pExportDir;
const …
0
votes
2answers
98 views
C++ Comparing Member Function Pointers
In C++, is it possible to define a sort order for pointers to member functions? It seems that the operator< is undefined. Also, it's illegal to cast to void*.
class A
{
…
4
votes
10answers
192 views
What are function pointers used for, and how would I use them?
I understand I can use pointers for functions.
Can someone explain why one would use them, and how? Short example code would be very helpful to me.
1
vote
4answers
124 views
C++, Can’t use an array or vectors, how do I use a pointer to get through this mess?
I need help with pointers and memory management.
I need to store different objects, all derived from the same base class, and have been using an array to do this but it is causing …
0
votes
3answers
34 views
Creating an Array of Arrays in XCode
I am trying to build an array that contains arrays of dictionary objects in Xcode. I can create a working array that has one or more dictionaries in it and then use the addObject: …
1
vote
3answers
84 views
C++ boost shared array swapping pointers (simple question)
Hi all,
I'm new to boost shared arrays.
There is existing code that declares two arrays:
boost::shared_array<unsigned char> src;
boost::shared_array<unsigned char> …
0
votes
1answer
38 views
passing primitive or struct type as function argument
I'm trying to write some reasonably generic networking code. I have several kinds of packets, each represented by a different struct. The function where all my sending occurs loo …
1
vote
5answers
120 views
C: Accessing a pointer from outside a function
I have the following code:
int takeEven(int *nums, int numelements, int *newlist) {
newlist = malloc(numelements * sizeof *newlist);
int i, found = 0;
for(i = 0; i < …
1
vote
2answers
122 views
Pointer notation in C
I know more C++ than C. Does C use -> for pointers, or is that only used in C++?
1
vote
8answers
220 views
How can I use pointers in Java?
I know Java doesn't have pointers, but I heard that Java programs can be created with pointers and that this can be done by the few who are experts in java. Is it true?
2
votes
3answers
159 views
difference between far pointer and near pointer in C.
can any body tell the difference between far pointer and near pointer in C?
1
vote
4answers
162 views
C++ Classes - Pointers question
I had a quiz at school and there was this question that I wasn't sure if I answered correctly. I could not find the answer in the book so I just wanted to ask you.
Point* array[10 …
0
votes
6answers
156 views
C# objects and C++ objects, the difference
When creating an object instance as such in C#
Myclass mc = new Myclass();
This mc is now a reference to a Myclass object created in memory. It's like a 'pointer' to that memo …
1
vote
6answers
235 views
Pointer equality in Haskell?
Is there any notion of pointer quality in Haskell? == requires things to be deriving Eq, and I have something which contains a (Value -> IO Value), and neither -> nor IO derive Eq. …
