A pointer is a data type that "points to" another value stored in memory using its address.

learn more… | top users | synonyms (1)

2
votes
0answers
60 views

Declare a pointer to pointer inside C# struct

How to convert this c++ struct into C# equivalent? typedef struct readdirplus_hash_bucket { ifs_rdplusbucket **hash; int hash_size; } ifs_rdplushashbucket; I stuck in double pointer. ...
2
votes
0answers
88 views

C++, Member function returning const reference to vector containing pointers to const objects

I have a class with a member vector of pointers to objects. Now I want an accessor method to return a const reference to this vector. I also want the caller method to be unable to edit the objects ...
2
votes
0answers
44 views

How to have a *Base assigned to *Child[n] point to the next element of the Child array?

I have this [incomplete] function: void EditorWindow::OnLMClick(SObjectType sOT, short xPos, short yPos) { SObject* pSObject; int nElements; switch(sOT) { case SOT_Tile: ...
2
votes
0answers
77 views

Invalid pointer when using global variables/lambda functions in python?

I've come across a bit of a strange bug, and I'm really not sure what's causing it. I have a list containing lambda functions, and i have set this list to be a global variable as shown below. The ...
2
votes
0answers
47 views

vector assign in Cython

here is my program of cython cdef struct Node: int v Node* next Node* pre def f(int N): cdef: vector[Node*] narray int i narray.assign(N, 0) for i in ...
2
votes
0answers
307 views

C++ Process terminated with status 3 confusion

I am very new to programming, but have been following c++ tutorials and amassing a number of PDFs for the last week or so to help me out. I couldn't find anything in them or online that answered my ...
2
votes
0answers
158 views

pointers to a class in dynamically allocated boost multi_array, not compiling

I am pretty new to C++ with Boost. I want an object of class "world" to have an array named "chunk" of type "octreenode". Previously I had an ordinary one-dimensional array, and this worked fine. ...
2
votes
0answers
328 views

Pass by pointer, memory leak

NOTE: Initially I though that a section of code was causing a leak but that turned out to be incorrect. Hence the comments below. I have updated the question Possible Solution: I managed to solve ...
2
votes
0answers
359 views

OpenCL. Weird bug with array addressing/pointers

I have this simple kernel for testing. __kernel void nfa(__global const int *a, __global int *output) { output[0] = a[0]; } Note: This is running on a cpu, and memory is probably on the ...
2
votes
0answers
234 views

C++ passing in a * to a class

I am attempting to retrieve an item from a chained array hash table. The retrieve function belongs to the a class table, of which the hash tables are members. The table is a member of the client ...
1
vote
0answers
74 views

2D Array seems to change values as c++ class member

I have got a strange behavior when using a double pointer to array in my programm like this: /* in a.h */ class A{ private: int _n; int _m; int _p; int _dim; int** ...
1
vote
0answers
57 views

Assigning string to char pointer in 64bit C++ error

I am stucked in a problem assigning a string to a character pointer. It seemed that the character pointer is taking only first 256 character of the string. My working in 64bit platform. Also the same ...
1
vote
0answers
30 views

Strange wording in the standard, concerning comparrison of pointers

§6.5.8\6 (converning >, <, <=, >=) If the expression P points to an element of an array object and the expression Q points to the last element of the same array object, the pointer ...
1
vote
0answers
75 views

Deciphering a coding assignment description

I have an assignment for class. I do not want any help with the code, just opinions on what you guys think he means by one line. I emailed my professor but he is slow to email back. "Assume that ...
1
vote
0answers
55 views

Function template to return pointer to specified subclass

I want to create a templated function that can create and initialize a new instance of any class that is a subclass of Actor, and return a pointer of the subclass type. I am still trying to figure out ...
1
vote
0answers
71 views

How to initialize void* data struct member with another struct member in C99?

let's assume that we have below struct definitions: typedef struct { uint8_t a ; } deepest_t ; typedef struct { deepest_t* deepest_ptr ; } deeper_t ; typedef struct { deeper_t* ...
1
vote
0answers
67 views

Undeclared identifier when passing struct using pointers

I have the following method to read a file into a struct, but, the program is bombing when it gets to the write file method as the curr variable is empty. I have added a null check when the variables ...
1
vote
0answers
46 views

Access Violation Upon Thread Completion

Here is the setup. I create a global variable GLfloat ***terrainMap; Next, in a main thread function, I initialize it as terrainMap = new GLfloat**[size+1]; for(int i = 0; i < size+1; i++) { ...
1
vote
0answers
76 views

C++ API - return a pointer of an object with extern “C”

I'm programming an API for a C++ simulation framework. And I want to use this API for example in C#. But I need a pointer to an object in that framework in C# so I can do something with that object. ...
1
vote
0answers
32 views

Rails design dilemma: same algorithm, different classes

I'm working on my first Ruby on Rails project and I am now faced with a design dilemma. I'm no professional programmer so I may be missing some pretty basic stuff. Please bear with me. My project is ...
1
vote
0answers
14 views

How do you point the current branch at the working directory in Bazaar VCS?

I am trying to set up Bazaar for our sites but am having trouble achieving the exact setup I want. Basically, I want one folder that contains all the information for each site, such as: ...
1
vote
0answers
27 views

How do you use shallow_array_adaptor

I'm trying to interface with software that just uses raw pointers for holding data. I feel pretty confident that I can avoid the issues with using shallow_array_adaptor if I make the wrapping vector ...
1
vote
0answers
193 views

Windows Forms: writing to a RichTextBox from another file (C++)

How can I enter text in a richTextBox from outside the forms class? I have four files within my project: Form1.h Form1.cpp Main.cpp Importfile.cpp inside form1.cpp I use the function: System::Void ...
1
vote
0answers
101 views

C# String to pointer in unmanaged class library

An existing application is going to import my class library. I am trying to do this in C# since I have a lot more experience in C# than C++. The existing application uses __stdcall which is originally ...
1
vote
0answers
88 views

C++ Error with Class pointers as a data member in another class

I keep getting weird C4430 and C2143 errors when I try to compile my code. My class has data members which point to different classes and the errors are saying that it is expecting a ";" in between ...
1
vote
0answers
159 views

How to calculate the true symbol address in a binary for use with atos?

I've been trying to figure out a way on how to calculate the exact symbol addresses from stack adresses I get from the crash reports. I've found the following formula: ...
1
vote
0answers
96 views

cursor to pointer on image in e-mail newsletter

When I make a newsletter with a linked image in it, the css style cursor:pointer; doesn't work on the image. Any ideas how to solve this? I think when people see the 'hand-cursor' they're more likely ...
1
vote
0answers
121 views

c++ Recursive Tree building with pointers and a state machine

I have a simple state machine (entered below). My major problem is that I am trying to make a recursive call to the function that is my state machine. What I do upon entry of the function is create a ...
1
vote
0answers
385 views

ARC semantic issue: Pointer to non-const type 'id' with no explicit ownership

I have this Objective-c interface declared in a header file: @interface DelegateChain: NSObject { @protected id * delegate; NSUInteger numberOfDelegates; NSUInteger ...
1
vote
0answers
159 views

PInvokeStackImbalance when calling Delphi DLL from C# with pointer type

I am trying to call an externally - supplied DLL developed in Delphi from C#. However I always seems to get a stack imbalance error when calling the functions when attempting to pass a parameter of ...
1
vote
0answers
140 views

PyQt Crash - Access violation writing location 0x00000000

I'm writing an application in PyQt on Windows XP that has multiple windows, dialogs, etc, and also uses OpenCV to display a video stream (processed into pixmaps via PyQt). Upon launching the program ...
1
vote
0answers
104 views

How to Initialize Task Control Block Stack in C?

I want to put a given task's initial program counter into the task's own stack. This is so I can restore the stack context to begin running the task. Does anyone have a good resource or know how to ...
1
vote
0answers
165 views

Passing C++ double arrays (pointer to pointer) to Python script

I'm trying to pass a C++ class with some 2D array member variables to a Python script. The 2D arrays are allocated directly into the class, independent of the constructor. I am using the boost_python ...
1
vote
0answers
78 views

Object reference not set to an instance of an object , youtube API

class Program { static void Main(string[] args) { string Appname; string developerKey; string username; string password; Appname = "a"; ...
1
vote
0answers
99 views

Thread OnTerminate

I am working on kind of a download manager that's Multithreaded. Each Thread has it's own ID/Handles/URL/etc. I would to implement something like Pause/Resume/Cancel a download. I have the ...
1
vote
0answers
145 views

Passing a pointer to a pointer variable from Fortran 77 to C

I have to write some code that mixes Fortran 77 with C. Suppose I have a C function with signature void foo(int ** x); Thus, if I were calling foo in C, I might have int x_val = 42; int * x_ptr = ...
1
vote
0answers
229 views

array of pointers to objects in c++ using templates

I have two questions, first i'm trying to create a hash table: am i instantiating the array correctly? I am trying to make a dynamic array of pointers to linked lists for chaining: the linked list ...
1
vote
0answers
167 views

Dispose of an object referenced via pointer in C#

I am using a C# wrapper to an API which is providing image data from a camera. I have a class which contains data for each frame received, and I would like to implement a dispose method to run once ...
1
vote
0answers
279 views

Unsafe auto-fill of structs in .Net, for Network code

The idea: Being able to take the bytes of any struct, send those bytes across a TcpClient (or through my Client wrapper), then have the receiving client load those bytes and use pointers to "paint" ...
1
vote
0answers
76 views

Pointer into table is causing symbols to not be loaded

I have several large tables in my program, and I'm trying to write a class to provide a generic interface with these tables. Each table is in its own header file, and contains a const double array and ...
1
vote
0answers
489 views

Pass reference of struct in a list from managed to unmanaged code across dll

I am very new to C# and currently having some trouble with marshalling structs to C functions in a dll. The struct in question contains a few ints, float and one char* in C as follows: struct Bin { ...
1
vote
0answers
389 views

Take Address of Managed Structure

(I am coding in C#) I want to pass a pointer to structure through an API. Say structure is, [StructLayout(LayoutKind.Sequential,CharSet= CharSet.Ansi)] public struct PassThisStruct { ...
1
vote
0answers
545 views

some keyboard/mouse events cant be caught-xlib programming

I have a problem with this program. It lists the current windows along with their window IDs, that are running on the system. Result is that for a particular window ID that i entered, I got an odd ...
0
votes
0answers
7 views

C# keeping values of object pointers for further retrieving

Hope someone can help me with this. I have a method (user_login) than prompts for a user to login and then generates and returns an invoice and a token. The problem is that if the user has already ...
0
votes
0answers
61 views

Segmentation fault (`core 'generated)

I'm doing a college exercise using classes list and  node. When I run it on Windows using geany shows me the correct result (which tells me that the code is fine), the problem is that eventually I get ...
0
votes
0answers
32 views

'Segmentation fault' with pthreads and arrary of pointers

Ok, I've hit a wall with my program. I am using pthreads to implement a parallel program, but I have come into a "Segmentation fault" with this block. //This is all in the main function //{{{{{ ...
0
votes
0answers
36 views

fwrite in C with paillier cryptosystem library functions

I have seen all the other Q&As regarding fwrite() but haven't been able get my code right. The following is the structure and function signature given in the paillier header file: /*This is a ...
0
votes
0answers
20 views

“warning: assignment makes integer from pointer without a cast” there is no pointer

The warning "warning: assignment makes integer from pointer without a cast" is appearing in the line: for (lin = lin_inicial; lin < (lin_inicial + num_linhas); lin++) lin is declared as int lin;. ...
0
votes
0answers
26 views

C random tree pointer warning (and sometimes crashing)

I'm writing a program to create a trinary tree of random size. That is, I add 0-3 branches for each node randomly, then see how large the tree is. The goal is to run this a few thousand times and then ...
0
votes
0answers
11 views

Song database null pointer

I'm creating a simple music database with UserInterface.class, Song.class, SongDatabase.class and Playlist.class. The Song object(artist, name, duration, filesize) input by user is meant to be stored ...

1 2 3 4 5 13