0
votes
7answers
142 views
void has unknown size in Visual C++
In Visual Studio C++ version 9 (and probably other versions too), the following code:
int a = sizeof(void);
void const *b = static_cast<void const *>("hello world");
b += 6;
Generates …
0
votes
8answers
65 views
Byte precision pointer arithmetic in C when sizeof(char) != 1
How can one portably perform pointer arithmetic with single byte precision?
Keep in mind that:
char is not 1 byte on all platforms
sizeof(void) == 1 is only available as an extension in GCC
While …
1
vote
5answers
258 views
What C compilers have pointer subtraction underflows?
So, as I learned from Michael Burr's comments to this answer, the C standard doesn't support integer subtraction from pointers past the first element in an array (which I suppose includes any …
0
votes
1answer
56 views
Implementing Win32 FileWrite
[DllImport("kernel32.dll", SetLastError=true)]
public static extern unsafe bool WriteFile(IntPtr hFile, void* lpBuffer, uint nNumberOfBytesToWrite, out uint lpNumberOfBytesWritten, IntPtr …
1
vote
7answers
187 views
Cleaner pointer arithmetic syntax for manipulation with byte offsets
In the following lines of code, I need to adjust the pointer pm by an offset in bytes in one of its fields. Is there an better/easier way to do this, than incessantly casting back and forth from char …
3
votes
8answers
485 views
What are convincing examples where pointer arithmetic is preferable to array subscripting?
I'm preparing some slides for an introductory C class, and I'm trying to present good examples (and motivation) for using pointer arithmetic over array subscripting.
A lot of the examples I see in …
80
votes
6answers
5k views
In C arrays why is this true? a[5] == 5[a]
As Joel points out in Stack Overflow podcast #34, in C Programming Language (aka: K & R), there is mention of this property of arrays in C: a[5] == 5[a]
Joel says that it's because of pointer …
0
votes
6answers
208 views
Doing pointer math in a c++ class: Is it “legit”?
Ah-hoi, hoi,
I'm wondering if it's ok to do something like the following:
class SomeClass
{
int bar;
};
SomeClass* foo = new SomeClass();
int offset = &(foo->bar) - foo;
SomeClass* …
0
votes
2answers
137 views
pointer arithmetic on vectors in c++
i have a std::vector, namely
vector<vector<vector> > > mdata;
i want pass data from my mdata vector to the GSL function
gsl_spline_init(gsl_spline * spline, const double xa[], const …
0
votes
1answer
98 views
Pointer Arithmetic and Navigating malloc’ed arrays.
Okay, so I'm working on an OpenGL ES application for the iPhone, and I ran into an interesting issue.
I have a function that computes the vertices, normals, and texture coordinates of a sphere …
2
votes
3answers
252 views
Increase a struct pointer with half the struct size
I just got an interesting problem to take care of, and I see no neat way to solve it.
I have two base data structures that represents a complex graph, declared something like this:
typedef struct …
5
votes
2answers
130 views
How does a hardware trap in a three-past-the-end pointer happen even if the pointer is never dereferenced?
In his November 1, 2005 C++ column, Herb Sutter writes ...
int A[17];
int* endA = A + 17;
for( int* ptr = A; ptr < endA; ptr += 5 )
{
// ...
}
[O]n some CPU architectures, including
…
7
votes
3answers
297 views
C - element beyond the end of an array
I've been reading K & R's book on C, and found that pointer arithmetic in C allows access to one element beyond the end of an array. I know C allows to do almost anything with memory but I just …
7
votes
2answers
678 views
Pointer Arithmetic In C.
Consider the following code fragment:
int (*p)[3];
int (*q)[3];
q = p;
q++;
printf("%d, %d\n", q, p);
printf("%d\n", q-p);
I know that pointer arithmetic is intelligent, meaning that the operation …
2
votes
7answers
826 views
Pointer Arithmetic
Does anyone have any good articles or explanations (blogs, examples) for pointer arithmetic? Figure the audience is a bunch of Java programmers learning C and C++.
