If a particular type(say int,char,float,..) pointer is incremented the value of pointer variable increased by number which is equal to size of the particular data type.If a void pointer points to data of x size for increment operation how it will point to x size ahead? How compiler knows to add x to value of the pointer?
|
|
Final conclusion: arithmetic on a GCC allows it as an extension, see Arithmetic on The C Standard SpeaksQuotes are taken from the n1256 draft. The standard's description of the addition operation states:
So, the question here is whether
And the standard defines
Since Therefore you cannot perform pointer arithmetic on a NotesOriginally, it was thought that
However,
So this means that Editor's note: This answer has been edited to reflect the final conclusion. |
|||||||||||||||||||
|
|
Pointer arithmetic is not allowed on |
|||||||||
|
|
If a function accepts a void*, but will have to do something with it, which is the preferred formulation in C and/or C++ (if preferred formulation is different):
On some C compilers, one could get away with having the function declaration use a void* argument while the definition used (unsigned char*), but that certainly won't work under C++, and many C compilers balk at it as well. Is there any other technique which yields efficient code and isn't ugly? |
|||
|
|
|
Void pointers can point to any memory chunk.Hence the compiler does not know how many bytes to increment/decrement when we do a pointer arithmetic operation on a void pointer. Therefore void pointers must be typecasted first to a known type before they can involve in any pointer arithmetic.
|
|||
|
|