Tagged Questions
4
votes
8answers
93 views
How to properly declare a pointer with the indirection operator set correctly in C [closed]
When declaring pointers in C, I see 2 variants:
Variant A:
int* ptr;
Variant B:
int *ptr;
In A, the indirection operator has been appended to the type. In B, the indirection operator has been ...
2
votes
2answers
128 views
How do I use a method to change a pointer?
I'm working on an iPhone app using objective C. I've got class A, which creates an NSMutableArray pointer called "list". But, in class A, I never create an object for it to point to. Instead, I ...
2
votes
5answers
210 views
Why is my multi-dimensional dynamic allocation in C not working?
I have been trying to figure out the problem with my allocation and use of a multidimensional dynamically allocated array in C. I'd really appreciate any help.
I've tried two approaches. The first:
...
2
votes
4answers
410 views
Have you come across any reason for three levels of indirection?
Just flicking through one of my favourite books (Ellen Ullman's The Bug) and there is a small bit where one programmer confronts another over three levels of indirection:
***object_array = ...
1
vote
1answer
67 views
How to pass (and set) non-objects by indirection?
NSError objects are frequently used like this (taken from this previous question):
- (id)doStuff:(id)withAnotherObjc error:(NSError **)error;
I want to achieve something similar with BOOL ...
1
vote
1answer
81 views
Problem with multiple levels of indirection
When allocating and then attempting to access an array of pointers to pointers:
void tester(char ***p)
{
int i;
char **pp;
pp = *p;
pp = calloc(10, sizeof(*pp));
for (i = 0; i ...
1
vote
4answers
285 views
TOUGH: Dealing with deeply nested pointers in C++
I define this structure:
struct s_molecule
{
std::string res_name;
std::vector<t_particle> my_particles;
std::vector<t_bond> my_bonds;
std::vector<t_angle> my_angles;
...
1
vote
3answers
111 views
Purpose of dereferencing a pointer as a parameter in C
I recently came along this line of code:
CustomData_em_free_block(&em->vdata, &eve->data);
And I thought, isn't:
a->b
just syntactic sugar for:
(*a).b
With that in mind, this ...
0
votes
3answers
292 views
Direct invocation vs indirect invocation in C
I am new to C and I was reading about how pointers "point" to the address of another variable. So I have tried indirect invocation and direct invocation and received the same results (as any C/C++ ...
0
votes
6answers
230 views
Accessing variables from a struct
How can we access variables of a structure? I have a struct:
typedef struct {
unsigned short a;
unsigned shout b;
} Display;
and in my other class I have a method:
int NewMethod(Display ...
-1
votes
4answers
170 views
Weird Pointer issue in C++
I'm running into a VERY frustrating pointer issue. I previously posted here:
http://stackoverflow.com/questions/3114997/tough-dealing-with-deeply-nested-pointers-in-c
But that post got overly long ...