Tagged Questions

0
votes
5answers
99 views

Pointers to Structures in C

When trying to compile the following code, I am getting a warning that line 18 makes integer from pointer without cast and that 19 and 20 are incompatible types in assignment. I a …
0
votes
4answers
73 views

Pointers problem..

What is the difference b/w struct { float *p; }*ptr=s; *ptr->p++ and (*ptr->p)++; I understand that the former points to the next address while the latter inc …
0
votes
4answers
31 views

Segmentation fault, using pointers to pointers

So I'm starting my magic square hw, where I ask the user to enter a odd integer, and it will create a magic square off that. I have to use pointers and arrays as that is all I have …
0
votes
8answers
122 views

How to learn C pointers?

I have worked with pointers a lot, but still whenever I work with them, I feel that one might not work the way I expect it to. My mind is not sure as to how they will behave. What …
4
votes
1answer
148 views

Mysterious pointer-related multithreading slowdown

Background: So I'm working on a raytracer.. for my construction of the spatial partitioning scheme, I initially had some code like this: if (msize <= 2) { // create a leaf node …
2
votes
6answers
266 views

Explicit Address Manipulation in C++

Please check out the following func and its output void main() { Distance d1; d1.setFeet(256); d1.setInches(2.2); char *p=(char *)&d1; *p=1; cout&lt …
0
votes
2answers
108 views

C++ vector to pointer of pointers

Is there a way to convert a vector to a pointer to a pointer (ptr-to-ptr). Background: I have an arbitrary length set of data stored in a vector. But I have a library of algorithm …
0
votes
5answers
60 views

Doubt regarding de-referencing structure pointers. Please explain

I am compiling this piece of code and I get compliation errors saying " dereferencing pointer to incomplete type" . I get the errors for the last print statement and before that w …
0
votes
1answer
70 views

C - Excess elements in array

Hey, I am learning C and I am playing around with pointers and arrays. I am trying to create an array of pointers with the code below: const int NUM_P = 50; // Line 10 char *pS[ …
-1
votes
5answers
96 views

Writing a binary file in C# to be read by C program, with pointers?

I'm moving some old C code that generates a binary file into our C# system. The problem is, the resulting binary file will still need to be read by another old C program. The ori …
0
votes
7answers
95 views

Copying some strings from pointer array in C++

I have a string pointer like below, char *str = "This is cool stuff"; Now, I've references to this string pointer like below, char* start = str + 1; char* end = str + 6; So, …
5
votes
19answers
299 views

C Pointer Syntax: Style poll [closed]

Which syntax do you prefer and why: char* string; char *string; Assume multiple variable declarations per line are not used. (I know about the differences).
2
votes
7answers
156 views

Using pointers to swap int array values.

I am supposed to use pointers to swap ints in an array. It compiles with no errors or warnings and runs but does not swap the ints. Any suggestions would be helpful!!! Here is the …
0
votes
7answers
137 views

Change string pointed by pointer

hi friends Many functions in c take pointer to constant strings/chars as parameters eg void foo(const char *ptr) . However I wish to change the string pointed by it (ptr).how t …
1
vote
2answers
91 views

pointer arithmetic and the C# compiler

For the purpose of learning I recently looked at an existing assembly (using Reflector) that uses Win32 WriteFile. The implementation is: Write(IntPtr handleFile, void* bufferData …

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