-3
votes
1answer
56 views

Passing a double pointer to a function as reference - c

I'm having hard times trying to pass the reference of double pointer to a function. I have this: #include <stdio.h> #include <stdlib.h> #include <string.h> #define MAX_ROWS 2 ...
1
vote
1answer
46 views

How to let two threads exchange data via a pointer?

I want an asynchronous thread to edit an object. Therefore I store a pointer to that object. Data *pointer; There is also a flag of type std::atomic<bool> to know if the secondary thread is ...
0
votes
3answers
40 views

How to change 2 strings using a function, by changing their pointers' value

main() char *s1="Second"; char *s2="First"; swap(s1,s2); printf("%s\n",s1); printf("%s\n",s2); I have as an exercise, to swap those 2 strings above (so that the one that executes the program will ...
0
votes
1answer
35 views

Defining a function pointer of an unspecified namespace

I'm making a simple developer console for a game I'm working on with a friend of mine. I'm working on binding functions to the console, so I have an std::map containing a string to hold the name ...
1
vote
1answer
67 views

function array with functions from different objects

I don't have much experience using array of functions in C++. I need to use an array of functions where the array contains functions from different objects. Here is some dummy code to illustrate what ...
1
vote
1answer
43 views

Can I convert an array in such a way to Pointer and return a pointer to a constant?

Can I convert an array in such a way to Pointer and return a pointer to a constant ? It is right in terms of memory allocation ? const int* convert_vector_to_pointer(std::vector<std::pair<int, ...
0
votes
1answer
46 views

Pointer to a function inside a derived type on a module in fortran

I guess I could easily use some help here, since I'm messing around with some fortran 2003 but can't seem to understand how to do things really. The fact is that I need to write a fortran code that ...
0
votes
3answers
52 views

Modifying pointer value

I am having some trouble with some work I was assigned for my schooling. I was told to write a program that modifies a char. I can do that just fine. I just cannot get how to work with pointers. I've ...
0
votes
2answers
107 views

C++ Is it possible to have a generic function pointer?

In C++ is it possible to make some sort of generic function pointer that points to any function that returns a pointer to some type and takes no arguments? Eg, one type of pointer that can point to ...
0
votes
2answers
61 views

Passing a class Member function as an Argument

I have a class as follows and a main method as follows: class Mesh { public: void draw() void draw(){} } int main(int argc,char* argv[]) { Mesh mesh; glutDisplayFunc(mesh.draw); } ...
1
vote
2answers
68 views

Accessing external function using function pointer in C

Im trying to link to a extern function using a pointer to it. But everytime I try, I get compiler errors that the extern function is undeclared. I have little experience with external functions, and ...
0
votes
3answers
50 views

No matching function for call error

I don't understand what's wrong here. I've cut what i believe to be the non relevant part of the code to make it easier to read. The debugger shows the error below at the line "check(grid, n, q, ...
-2
votes
2answers
49 views

Showing error in function pointer code [closed]

I have written a code that uses function pointers to compare strings. But, it is showing me errors and I don't know how to correct them. Here is the code: #include<stdio.h> ...
-1
votes
0answers
38 views

passing char* argument to function in C

I have the following function: void func(unsigned char* src,unsigned char* dest){ //do something with dest, using src for(i=0;i<10;i++){ //print some dest values } } I call this ...
0
votes
2answers
40 views

C++ multidimensional array and pointers to table of pointers

Here is the thing. I can completely understand a concept of a multidimensional array (let's consider 2D for a while) made by pointer to array to pointers and so on... We do something like this: // ...
0
votes
1answer
38 views

Clarification on concept of callbacks and function pointers in c

I found this line on wikipedia about function callbacks, "In computer programming, a callback is a reference to executable code, or a piece of executable code, that is passed as an argument to other ...
0
votes
3answers
45 views

Changing stdout (putch() function) on the fly in C

I'm using the XC8 compiler. For that, you have to define your own void putch(char data) function in order for functions like printf() to work, as is described here. Basically, putch() is the function ...
0
votes
2answers
36 views

C++ Passing Polymorphic Pointer of Pointers to Function

In trying to shorted my code for readability, I wound up changing too much and making mistakes. This is still condensed but taken straight from my code. My problem is that I have a class called ...
1
vote
2answers
50 views

Passing pointer to SOCKADDR_IN and SOCKET in a function

I have a function createServerSocket(). This function can be accessed by multiple threads for creating their sockets. I want each thread to pass three arguments, a socketIdentifier, *sockaddr_in* ...
0
votes
2answers
83 views

How do I pass a pointer to an array of pointers as an argument to a function?

I'm trying to code a robot, and I'm having a confusing situation. I need to pass an array of pointers to objects to a constructor of a class. I can't, however, populate the array before I pass it into ...
0
votes
1answer
76 views

Dynamic array as function argument

In main function of my program I've created dynamic array with number of elements specified in variable(after calculations array is deleted): cin >> bok; double **macierz; macierz = new double ...
0
votes
6answers
101 views

C Assign Pointer to NULL

I am misunderstanding something basic about pointers in C, this should be simple but search brings up nothing. I do not understand the behaviour of the following code; #include <stdlib.h> ...
0
votes
2answers
51 views

Syntax error of a pointer to member function

Salutations I'm trying to use the std::sort algorithms on specials objects. I got a list to sort and a binary function which give me a comparison: Interesting part of B.cpp void ...
0
votes
2answers
76 views

How to force the function implementation should be reference input type rather than value type

Please suggest me a way to force the third part implementer should use pass by reference input argument type rather than using pass by value type. I know using pointer we can achieve this but I dont ...
1
vote
1answer
35 views

How to compare member pointer functions for equality with DLLs involved in Microsoft Visual C?

From what I've read here one can compare two pointers to member functions for equality. However the article seems to cover only the case of a single executable without DLLs involved. Is it possible ...
0
votes
3answers
54 views

Can I modify the target of a pointer passed as parameter?

Can a function change the target of a pointer passed as parameter so that the effect remains outside the function? void load(type *parameter) { delete parameter; parameter = new ...
1
vote
4answers
98 views

Returning arrays and pointers in C?

I'm relatively a beginner in programming in C and am getting super confused with arrays and pointers. Basically what I'm trying to do is extend a string that contains binary to the designated length ...
3
votes
2answers
58 views

“no match for operator->* in pos ->* op”

I am getting the following error while compiling the below code. I am confused and am not able to figure out what is wrong here. Is the member function pointer de-referencing wrong? Error: #g++ ...
-4
votes
4answers
99 views

why can't I pass in variables to implement a swap function?

I just started learning C and I was confused about why do I have to use pointers to implement a swap function? Version where swap does not work: #include <stdio.h> void swap(int i, int j) { ...
2
votes
3answers
82 views

Function Pointer Declaration - what does __P do?

The usual form of function pointer definitions is: int function(int, int); int (*ptr)(int, int); but I saw a form today which I didn't understand. Can anyone explain this please? int (*close) ...
0
votes
1answer
48 views

Returning a pointer is not working fine

When I try to display the content of an array via a pointer returned by a function, the program displays only zeros. I am not sure what is missing. I have tried to check several times what is wrong, ...
1
vote
1answer
47 views

CancelIoEx : Function pointer typedef

The following code is copied from MS Async Filter. It is supposed that the following code is calling either CancelIo or CancelIoEx. I don't see where CancelIoEx is called in anyway. It is supposed ...
0
votes
3answers
69 views

Float is printf wrong value

I have another float output issue printing "1.#R", I have narrowed it down to recurring values, so my question is how do I round the value to the 2 decimal places, so I can print the value (but not ...
0
votes
2answers
50 views

Returning pointers from function gives weird numbers

Iam trying to get the max number of this array that has numbers from -20 to 30 but it returns weird numbers like this --> 2255667 which is impossible if all is going well. int * ptomx(int a[],int n) ...
0
votes
3answers
100 views

Function returning pointer to pointer

Please look at my code below: class SVMClassifier : public LibHAR { public: ... //This is my function returning a pointer to pointer to svm_node structure svm_node** ...
-2
votes
1answer
55 views

Creating realloc array in C function and sending it to another

My code: void calculations(int *data1, int *data2, int size1, int size2){ if (size1 != 0 && size2 != 0){ int *temp_data = NULL; all_in_one(&temp_data, data1, data2, *size1, ...
0
votes
5answers
57 views

Change given function parameter within the function c++

I wrote an function called swap to swap given two elements within the function. But when I use it in another function, it doesn't work. How to get it work? #include <iostream> using namespace ...
-1
votes
2answers
32 views

Why the pointer to function gets value 0x00000000?

Why proc which is a function pointer gets null value? EDITED:
0
votes
1answer
83 views

Filling array in C by using functions

Okay, so I am calling function fill_arrays like this: fill_arrays(&data1, &data2, &size1, &size2); fill_arrays looks like this: void fill_arrays(int **data1, int **data2, int ...
0
votes
4answers
71 views

How to assign anything to array in this C function?

I have this C function: fill_array(&data, &size); void fill_array(int **data, int *size){ printf("Size is:"); scanf("%d", size); *data = malloc(*size * sizeof(int *)); int i = 0; ...
1
vote
2answers
57 views

Calling functions using an array of pointers

I have the following files in my program, a header with certain function definitions, and a program with the body of the functions. something.h typedef struct _foo { int id; int lucky_number; } ...
2
votes
1answer
123 views

Calling C function from assembly, segfault

I'm writing an assembly function to replace letters in a string, char by char, if that char, passed to a function (given by a function pointer param), returns 1. For instance, if isVowel(c) returns ...
0
votes
2answers
60 views

About a function that uses pointers in C

I made a simple function in C which takes as arguments 1 pointer to int, 1 double pointer to int and an integer (the third argument is possibly useless since it represents the number of integers that ...
-4
votes
4answers
61 views

C passing and pointers

So I'm writing this program, and I do not know how to pass by reference or value. I just need to pass for values from one function (processFile) to another function (printReport). Any help on how to ...
0
votes
0answers
27 views

comparable type referencing

can someone please explain what a functions like this const Comparable & findMin() const; void insert ( const Comparable & x ); mean. Comparable is declared as template . what i ...
-5
votes
1answer
44 views

Error running program - C

Where is the error running the program? I know that there is a problem in the row of the loop FOR in the two functions. I ran with the debugger and I do not know why there is the error. The crash ...
0
votes
2answers
58 views

Filling array of pointers by function c++

Hello I have made class gabka and a funtion f1 to which I would like to pass an array of pointers to fill this array with gabka objects but I get weird error. How to correct it? error: cannot ...
4
votes
1answer
137 views

Calling C++ function with pointer to function in C# as parameter

I have the following code in Native C dll. typedef void CallbackType( INT32 param1, INT32 param2 ); NATIVE_API void RegisterEventCallBack(CallbackType *callBackFunction); //INT32 is defined as ...
0
votes
1answer
23 views

Module function not returning an answer

#include <stdio.h> #include <stdlib.h> #include <math.h> func (int x, int apple); int main() {int x,apple; scanf("%d",x); func (x,apple); if (apple==0) printf("Yes"); ...
1
vote
3answers
55 views

Updating a pointer to a c array from a function

Say I have a function called array_push in c. void array_push(int *array_pointer, int array_length, int val) { int i; int *temp_array = malloc(sizeof(int) * (array_length + 1)); for (i = ...

1 2 3 4 5 12