Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

5
votes
3answers
157 views

Return a read-only double pointer

I want to a member variable, which is a double pointer. The object, the double pointer points to shall not be modified from outside the class. My following try yields an "invalid conversion from ...
3
votes
6answers
754 views

How to qsort an array of pointers to char in C?

Suppose I have an array of pointers to char in C: char *data[5] = { "boda", "cydo", "washington", "dc", "obama" }; And I wish to sort this array using qsort: qsort(data, 5, sizeof(char *), ...
3
votes
7answers
397 views

How do I properly turn a const char* returned from a function into a const char** in C?

In short, I would like to do this: const char **stringPtr = &getString(); However, I understand that you can't & on rvalues. So I'm stuck with this: const char *string = getString(); const ...
3
votes
2answers
1k views

Converting from a jagged array to double pointer in C#

Simple question here: is there any way to convert from a jagged array to a double pointer? e.g. Convert a double[][] to double** This can't be done just by casting unfortunately (as it can in plain ...
3
votes
4answers
5k views

How to work with pointer to pointer to structure in C?

I want to change member of structure under double pointer. Do you know how? Example code typedef struct { int member; } Ttype; void changeMember(Ttype **foo) { //I don`t know how to do it ...
2
votes
2answers
198 views

Initialisation from incompatible pointer type warning. Can't find the issue

I'm assuming this warning is crashing my app. I'm using objective-c for an iOS app. Xcode doesn't give a stack trace or anything. Not helpful. I have this assignment as a global variable: int ...
2
votes
3answers
3k views

Assigning memory to double pointer?

I am having trouble understanding how to assign memory to a double pointer. I want to read an array of strings and store it. char **ptr; fp=fopen("file.txt","r"); ...
1
vote
2answers
93 views

How to implement an algorithm with pointers and memory allocation in Java

I have an algorithm in C++ and I need to implement something similar in Java. I'm having trouble with memory allocation. How can I migrate the following snippet for example, from C++ to Java? size_x ...
1
vote
3answers
347 views

Overloading subscript operator and working with double-pointers?

I have the following variable that I need to work with, and have to write my own wrapper around it for an assignment. I am going beyond the assignment (since I am going to have to use this wrapper I ...
1
vote
5answers
1k views

Linked list head double pointer passing

I have seen this in some book/ tutorial. When you pass in the head pointer (of linked list) into a function, you need to pass it as a double pointer. For eg: // This is to reverse a linked list ...
0
votes
3answers
65 views

Extracting a file name from the path

Alright, I have the following: wchar_t **filePathList; This holds a list of files that are being added to a listbox. Problem is that they show the whole file path, and I want to get just the name. ...
0
votes
1answer
86 views

C - De-interleave Data

In a C program, I have two double pointers to some float data: float **source; float **dest; At runtime, the sizes are set and are identical. I want to copy the data from source to dest, but the ...
0
votes
4answers
179 views

How to pass the address of a double pointer to another double pointer

How can I pass the address of a double pointer to an other? I have this code and it's working correctly only if i set the commented line. Why the size is different? #include <stdio.h> #include ...
0
votes
3answers
213 views

How to check an empty space (NULL) in double pointers

I am trying to use an 'if' condition to check whether a location for an object is empty or not. I am using double pointers for this. Please see the code below: void show_room :: buy_car(int clmn, int ...
-3
votes
5answers
196 views

Double pointer in C

Anyone please elaborate what is happining here? int main() { int **p = 0; //p=? and why| *p=? and why|**p=? and why ++p; //p=? and why| *p=? and why|**p=? and why printf("%d\n", p); ...