>Please guide me how can I access the data of a void type buffer?
Normally <strong>malloc</strong> is used in a way like this:
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 bymalloc is casted to an integer pointer
int *p;
p = <strong>(int *)</strong> malloc( 50 * sizeof( int ) );
Ifmalloc 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:
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 tofree the allocated memory as well, otherwise you'll have memory leaks in your program :)
Hope this helps!
tux4life
Nearly a Posting Maven
2,350 posts since Feb 2009
Reputation Points: 2,134
Solved Threads: 243
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:
char* pchar = buf_ptr;
char* ptr = pchar + 20;
...
...pchar[20] the same as *ptr...
It's impossible to subscript void* pointer because sizeof(void) is not defined (type void has an empty set of values).
ArkM
Postaholic
2,001 posts since Jul 2008
Reputation Points: 1,234
Solved Threads: 348
@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:
void* ptr=but_ptr+20;//this is good
siddhant3s
Practically a Posting Shark
816 posts since Oct 2007
Reputation Points: 1,486
Solved Threads: 140
>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.
Narue
Bad Cop
15,460 posts since Sep 2004
Reputation Points: 6,464
Solved Threads: 1,401
#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;
}
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.
siddhant3s
Practically a Posting Shark
816 posts since Oct 2007
Reputation Points: 1,486
Solved Threads: 140
>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.
Narue
Bad Cop
15,460 posts since Sep 2004
Reputation Points: 6,464
Solved Threads: 1,401