Tagged Questions

0
votes
4answers
73 views

Help me understand this pointer vs. value issue

I know this is a dumb question, but its really bugging me. Take the following: public <TParseable> LinkedList<TParseable> readAllParseable( Parseable< …
2
votes
3answers
159 views

difference between far pointer and near pointer in C.

can any body tell the difference between far pointer and near pointer in C?
0
votes
3answers
104 views

Assigning to pointer immediately after deleting

I was wondering if it is safe to do this... delete p_pointer; p_pointer = p_otherPointer; Rather than... delete p_pointer; p_pointer = 0; p_pointer = p_otherPointer; I would …
0
votes
5answers
150 views

array of pointers as function parameter

I have a basic question on array and pointer in C/C++. Say I have: Foo* fooPtrArray[4]; How to pass the fooPtrArray into a function? I have tried: int getResult(Foo** fooPtrA …
0
votes
4answers
104 views

c++ array access through pointer

A simple question about accessing array information through pointers that I can't seem to figure out. I'm passing a bunch of multi-dimentional arrays into a function. Now they are …
1
vote
3answers
51 views

How to make a new list to point somewhere else, Lisp

Hello. The title is self-explanatory. How can I build a new list X from another list Y (same structure), but the resulting list pointing somewhere else in memory area, practically, …
1
vote
5answers
129 views

Casting const void pointer to array of const char pointers properly in C.

I have a piece of C code that looks like this: const char (*foo)[2] = bar(); Now bar() is a function that returns a (const void *). How do I properly cast this const pointer? Th …
0
votes
2answers
48 views

Private member function that takes a pointer to a private member in the same class

How can I do this? (The following code does NOT work, but I hope it explains the idea.) class MyClass { .... private: int ToBeCalled(int a, char* b); typedef …
0
votes
1answer
34 views

save inline asm register value to C pointer, can get it on GCC but not VC

hi there, for the sake of simplicity ill just paste an example instead of my entire code which is a bit huge. while im porting my code to VC++ instead of using GCC i need to rewrit …
0
votes
3answers
41 views

Help Cursor is not working in the firefox browser…

<html> <head> <title>Question</title> <script type="text/javascript" > function MouseOverHand(ID) { var Cursor='hand'; var ID=ID; if (!document.all){ …
1
vote
3answers
118 views

Marshalling struct with embedded pointer from C# to unmanaged driver

Hi, I'm trying to interface C# (.NET Compact Framework 3.5) with a Windows CE 6 R2 stream driver using P/Invoked DeviceIoControl() calls . For one of the IOCTL codes, the driver …
0
votes
6answers
232 views

Why does C need arrays if it has pointers?

If we can use pointers and malloc to create and use arrays, why does the array type exist in C? Isn't it unnecessary if we can use pointers instead? Thanks.
1
vote
3answers
165 views

char* pointer from string in C#

Is it possible to get a char* for a string variable in C#? I need to convert a path string to a char* for using some native win32 function ...
2
votes
9answers
288 views

C++ function parameters: use a reference or a pointer (and then dereference)?

I was given some code in which some of the parameters are pointers, and then the pointers are dereferenced to provide values. I was concerned that the pointer dereferencing would …
1
vote
3answers
147 views

c++ - convert pointer string to integer

I am trying to convert treePtr->item.getInvest() which contains a string to an integer. Is this possible?

1 2 3 4 5 14 next
15 30 50 per page