| | |
How to index the void pointer buffer in VC++?
Please support our C advertiser: Programming Forums - DaniWeb Sister Site
Thread Solved |
•
•
Join Date: Oct 2006
Posts: 38
Reputation:
Solved Threads: 0
Hi all,
I working in VC++. I have a void pointer. I am assigning a memory block to it using malloc().
void* buf_ptr = NULL;
buf_ptr = malloc(1428480);
I am filling this buffer using fread(). and I want to index this buffer (buf_ptr) to acces its data. How can I do that.
I am facing the following errors.
Error 24 error C2036: 'void *' : unknown size c:\AMT_DLL_tester.cpp
Error 25 error C2440: '=' : cannot convert from 'void' to 'void *' c:\AMT_DLL_tester.cpp
Here is my source code
Please guide me how can I access the data of a void type buffer?
Your help will be highly appreciated..
Many Thanks.
Asif Javaid
I working in VC++. I have a void pointer. I am assigning a memory block to it using malloc().
void* buf_ptr = NULL;
buf_ptr = malloc(1428480);
I am filling this buffer using fread(). and I want to index this buffer (buf_ptr) to acces its data. How can I do that.
I am facing the following errors.
Error 24 error C2036: 'void *' : unknown size c:\AMT_DLL_tester.cpp
Error 25 error C2440: '=' : cannot convert from 'void' to 'void *' c:\AMT_DLL_tester.cpp
Here is my source code
C Syntax (Toggle Plain Text)
FILE *f_in = NULL; f_in = fopen(argv[f],"rb" ); if ( f_in == NULL ) { fprintf(fptr,"ERROR: Could not open '%s'\n" , argv[f] ); fclose(fptr); return 1; } int buf_size = 1428480; void *buf_ptr = NULL; buf_ptr = malloc(buf_size+1); items = fread(buf_ptr,buf_size,1,f_in); void * ptr = buf_ptr[20]; //----------->error
Please guide me how can I access the data of a void type buffer?
Your help will be highly appreciated..
Many Thanks.
Asif Javaid
>Please guide me how can I access the data of a void type buffer?
Normally
As you can see in the example above/below, the void pointer which is returned by malloc is casted to an integer pointer
If malloc couldn't allocate the memory, then it returns a NULL-pointer, but using a NULL-pointer will almost certainly crash your whole program, that's why it's generally recommended to check the return value of malloc before using the pointer where you've tried to assign memory to...
Checking whether the allocation has succeeded can be achieved by something like this:
BTW, Don't forget to free the allocated memory as well, otherwise you'll have memory leaks in your program
Hope this helps!
Normally
malloc is used in a way like this: C Syntax (Toggle Plain Text)
int *p; p = (int *) malloc( 50 * sizeof( int ) ); // allocate space for 50 integers
As you can see in the example above/below, the void pointer which is returned by malloc is casted to an integer pointer
int *p;
p = (int *) malloc( 50 * sizeof( int ) );If malloc couldn't allocate the memory, then it returns a NULL-pointer, but using a NULL-pointer will almost certainly crash your whole program, that's why it's generally recommended to check the return value of malloc before using the pointer where you've tried to assign memory to...
Checking whether the allocation has succeeded can be achieved by something like this:
C Syntax (Toggle Plain Text)
int *p; p = (int *) malloc( 50 * sizeof( int ) ); // allocate space for 50 integers if( !p ) { // out of memory // the memory could not be allocated }
BTW, Don't forget to free the allocated memory as well, otherwise you'll have memory leaks in your program

Hope this helps!
Last edited by tux4life; Jun 11th, 2009 at 7:26 am.
"Never argue with idiots, they just drag you down to their level and then beat you with experience."
In C you can assign void* type pointer value to the pointer of any type without casting. So simply declare a proper type pointer and set it to the buffer:
It's impossible to subscript void* pointer because sizeof(void) is not defined (type void has an empty set of values).
c Syntax (Toggle Plain Text)
char* pchar = buf_ptr; char* ptr = pchar + 20; ... ...pchar[20] the same as *ptr...
•
•
Join Date: Dec 2007
Posts: 10
Reputation:
Solved Threads: 2
c Syntax (Toggle Plain Text)
void* ptr = buf_ptr[20]; //----------->error
the value of the 20th in buf_ptr
Last edited by Beair.GQ; Jun 13th, 2009 at 2:11 am.
@Tux4life
Your beautiful post has nothing to do with OP's problem. The construct use for allocating space using malloc is absolutely valid in C.
The only problem is on line:
void* ptr = buf_ptr[20];
as Beair.GQ said, you are assigning a void to void*. The type of buf_ptr[i] is not that of a pointer.
You should perhaps try this:
Your beautiful post has nothing to do with OP's problem. The construct use for allocating space using malloc is absolutely valid in C.
The only problem is on line:
void* ptr = buf_ptr[20];
as Beair.GQ said, you are assigning a void to void*. The type of buf_ptr[i] is not that of a pointer.
You should perhaps try this:
void* ptr=but_ptr+20;//this is good Siddhant Sanyam
(Not posting much)
Migrate to Standard C++ :When to tell your C++ Code is Non-Standard.
Please Read before posting: How To Ask Questions The Smart Way
(Not posting much)
Migrate to Standard C++ :When to tell your C++ Code is Non-Standard.
Please Read before posting: How To Ask Questions The Smart Way
>You should perhaps try this:
>void* ptr=but_ptr+20;//this is good
Perhaps you should try it first. You have no excuse for giving an answer that will never compile on a conforming C compiler.
ArkM gave the correct answer (and corrected tux's misconception about casting malloc). Alternatively, you can cast the pointer to void to a pointer to an appropriate type, but regardless of how you do it, void* has to be converted to T* to do anything meaningful with it, where T is a non-void type.
>void* ptr=but_ptr+20;//this is good
Perhaps you should try it first. You have no excuse for giving an answer that will never compile on a conforming C compiler.
ArkM gave the correct answer (and corrected tux's misconception about casting malloc). Alternatively, you can cast the pointer to void to a pointer to an appropriate type, but regardless of how you do it, void* has to be converted to T* to do anything meaningful with it, where T is a non-void type.
I'm here to prove you wrong.
c Syntax (Toggle Plain Text)
#include<stdio.h> #include<stdlib.h> int main() { void* buf_ptr = NULL; buf_ptr = malloc(1428480); if(buf_ptr) { printf("%p \n",buf_ptr); void* p; p=buf_ptr+1; printf("%p \n",p); } return 0; }
C Syntax (Toggle Plain Text)
siddhant3s@Xion:~$ gcc testerc.c -o testerc.exe -ansi -pedantic testerc.c: In function ‘main’: testerc.c:11: warning: ISO C90 forbids mixed declarations and code testerc.c:12: warning: pointer of type ‘void *’ used in arithmetic siddhant3s@Xion:~$ ./testerc.exe 0xb7c97008 0xb7c97009
You win....... The code compiles though. But you are correct.
Siddhant Sanyam
(Not posting much)
Migrate to Standard C++ :When to tell your C++ Code is Non-Standard.
Please Read before posting: How To Ask Questions The Smart Way
(Not posting much)
Migrate to Standard C++ :When to tell your C++ Code is Non-Standard.
Please Read before posting: How To Ask Questions The Smart Way
>The code compiles though.
What you're seeing is a silent extension where the compiler treats the size of void as 1. GCC is wrong to allow it in pedantic mode as it's a constraint violation in the standard.
>warning: ISO C90 forbids mixed declarations and code
This should be an error as well.
What you're seeing is a silent extension where the compiler treats the size of void as 1. GCC is wrong to allow it in pedantic mode as it's a constraint violation in the standard.
>warning: ISO C90 forbids mixed declarations and code
This should be an error as well.
Last edited by Narue; Jun 13th, 2009 at 4:48 pm.
I'm here to prove you wrong.
•
•
Join Date: Oct 2006
Posts: 38
Reputation:
Solved Threads: 0
Hi all, Thanks very much for alls participation.
Arkm, yes you are right I can access the contents of void* buf_ptr by doing the following.
siddhant3s, your code can compile in gcc compiler but I am using Microsoft VC++9.0 comipler and it is generating an error of unknown size, as I do void*p = buf_ptr+1;
Many Thanks all.
Arkm, yes you are right I can access the contents of void* buf_ptr by doing the following.
C Syntax (Toggle Plain Text)
void* buf_ptr = NULL; buf_ptr = malloc(1428480); strcpy((char*)buf_ptr,"Asif Javaid"); char *p = (char*)buf_ptr; printf("%c",*(p+1));
siddhant3s, your code can compile in gcc compiler but I am using Microsoft VC++9.0 comipler and it is generating an error of unknown size, as I do void*p = buf_ptr+1;
Many Thanks all.
![]() |
Similar Threads
- error-`void*' is not a pointer-to-object type (C++)
- void pointer problem (C++)
- Writing the data of a void pointer to a file (C)
- is conversion from void pointer to class object pointer valid?? (C++)
- problem in void pointer (C++)
- void pointer to char pointer (C)
- void pointer (C)
Other Threads in the C Forum
- Previous Thread: Segfault in Primes Program
- Next Thread: undefined reference to...
| Thread Tools | Search this Thread |
* ansi api append array arrays bash binarysearch calculate centimeter changingto char character convert copyanyfile copypdffile creafecopyofanytypeoffileinc createcopyoffile createprocess() dynamic execv fflush file floatingpointvalidation fork forloop frequency function getlogicaldrivestrin givemetehcodez grade graphics gtkwinlinux histogram homework i/o ide inches include infiniteloop initialization input intmain() iso keyboard km license linked linkedlist linux list looping loopinsideloop. lowest matrix microsoft multi mysql oddnumber open opendocumentformat openwebfoundation overwrite pdf pointer pointers posix power program programming pyramidusingturboccodes radix read recursion recv recvblocked reversing scanf scheduling segmentationfault send shape single socketprogramming stack standard strchr string strings suggestions test testautomation threads unix urboc user variable whythiscodecausesegmentationfault win32api windowsapi






