Tagged Questions
4
votes
8answers
106 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
5answers
212 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:
...
1
vote
1answer
84 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
3answers
113 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
1answer
56 views
void** parameter called with a fixed array value
I have a fixed-size array declared:
int vals[25];
And I'd like to send the array to a function which will assign the values of vals:
bool FetchValueArray(char* source, char* name, char* ...
0
votes
1answer
301 views
Can gcc inline an indirect function call through a constant array of function pointers?
Let's say we have this code:
inline int func_2 (int a, int b) {
return time() + a * b;
}
int main (void) {
int x = (int (*[])(int, int)){func_1, func_2, func_3}[1](6, 7);
}
Can gcc be somehow ...
0
votes
3answers
304 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++ ...