A void pointer (`void *`) in C and C++ is a pointer that points to a memory location with no specified type.
3
votes
2answers
84 views
“'void*' is not a pointer-to-object type” in code with no void*'s?
I have a problem in my code. In Xcode or using the C++11 compiler, this code works well. However, when I am submitting this code to an Online Judge, the verdict shows "Compile Error". I think they use ...
1
vote
2answers
58 views
How can I use a void* argument in C++ for multiple object types?
In short, I have multiple classes that I have created for representing data from different devices (cameras, actually). They both have different behavior under the hood, but the interaction is built ...
0
votes
4answers
63 views
C functions multiple results multiple types
I'm coding a SCPI parser (as a lib). The device or application functions by the lib user need to be able to output multiple results in multiple types (not mixed types, i.e., multiple results of type A ...
0
votes
5answers
81 views
what is the practical use of void datatype and void pointer?
Void variable has nothing to do and also void pointer can only be pointed with casting.
So void pointer is used when we actually don't know where and of which data type we want to point. But what is ...
3
votes
3answers
67 views
Making a void* within a struct point to an integer
I have a struct as follows:
typedef struct Node {
void* data;
unsigned long id;
NodePtr next;
NodePtr prev;
} Node;
It is meant to be a node in a linked list ADT. I have 2 different ...
-1
votes
2answers
50 views
Cast from void * produces Segmentation Violation error
I'm using the Gnu Scientific Library to implement a module in my program that computes integrals numerically.
The functions are based on the example that can be found on the GSL website in Numerical ...
0
votes
1answer
144 views
How to get data without corruption when void* is used?
Well, I am using a Map to store any kind of pointer (void*), and it is being used in a scope object. here is the scope class.
class Scope
{
protected:
Scope * parent;
MyMap* map;
public:
...
0
votes
5answers
46 views
Pointers typecast
I have the followig code and I want to know why I have the following output:
#include <iostream>
int main() {
double nValue = 5;
void *pVoid = &nValue;
short *pInt = ...
3
votes
4answers
84 views
Is the NULL pointer implicitly converted to type (int*) when we use “if(ptr==NULL)” for an integer pointer ptr?
I know that a NULL pointer is (void*)0.But what happens when we use statements like the following:
if(ptr==NULL)
where ptr can be a char,float or int pointer?Is NULL guaranteed to be implicitly ...
0
votes
3answers
60 views
In C,is casting to (void*) not needed/inadvisable for memcpy() just as it is not needed for malloc()?
I have some confusions about what I read from the following site about memcpy()(and malloc()):
http://www.cplusplus.com/reference/cstring/memcpy/
In that page,the following 2 lines are clearly ...
0
votes
3answers
89 views
Why does incrementing a void pointer by 1 moves one byte ahead but it's 4 bytes for an integer pointer,8 for double? [duplicate]
In the following program,if I add 1 to a void pointer, it moves one byte ahead.But,quite as expected, it moves 4 and 8 bytes respectively for int and double pointers.Why does the void pointer move by ...
0
votes
0answers
25 views
Mancala coding for bin selection and bin dropping
I am to write out a code that is to ask the player which bin they want to select except it will not "Make selection with beads between 7 and 12." when i set the player==2 and enter binNum 13. I also ...
15
votes
2answers
300 views
Objective-C variable… pointing to itself?
I spotted this construct in some of Apple's example code for dealing with key-value observing. When adding an observer, you can add a context (in the form of a void* variable) that can uniquely ...
0
votes
1answer
25 views
Determining index from bsearch and lfind?
I'm trying to get the index of the element in the array after lfind and bsearch return the pointer to the element that it found. I have this so far:
(char *) (found - cv->baseAddress);
where ...
2
votes
0answers
79 views
Ctypes, C extension, and outside library: Cast Long to Void Pointer
I built a thin wrapper around a C library using ctypes that I'm trying to improve now. The library has an add_datum(*graph,int) function that I've wrapped (including the Structure for graph), and it ...
-1
votes
3answers
56 views
Pointer of void array
I have an array of void-Pointers and want to access the elements (inititialize them), but it do not work:
void* anyptr = ...; //a pointer to something
void* arr = (void*)malloc(sizeof(void*)*10);
...
1
vote
0answers
37 views
macro to check if the return value of a function is being checked
I have a function
void *custom_get_value(ObjectPtr)
This function traditionally never used to return NULL.It can return any of the following values
uint32_t
int32_t
uint64_t
int64_t
uint8_t
...
0
votes
1answer
61 views
pthread_create does not work due to void pointer and integer conversion error
How/why do you convert to/from a void pointer or int?
The following code wrongly generates compiler errors:
while(num_producers > 0) {
pthread_t tid; // id of pthread (not used except to ...
0
votes
3answers
113 views
type casting integer to void* [duplicate]
#include <stdio.h>
void pass(void* );
int main()
{
int x;
x = 10;
pass((void*)x);
return 0;
}
void pass(void* x)
{
int y = (int)x;
printf("%d\n", y);
}
output: 10
my ...
0
votes
2answers
57 views
Getting data from a void pointer using run time type identification
I have some classes corresponding to some datatypes which are supposed to encode and decode the actual data. eg,
class MyInt32 will have function for encoding an integer value and decoding it from a ...
4
votes
5answers
131 views
How can a char variable accept Pointer(NULL) as its value?
I understand that a char variable can accept a null character(1 byte) i.e; \0 as its value but, I don't understand how a char variable in my application below accepts a pointer(4 bytes) as its value ...
0
votes
2answers
95 views
delete void* pointer in c++
I'm reading thinking in c++, chapter 13: dynamic object creation.
In this chapter, Eckel talk about deleting void* may be probably a bug.
The following paragraph confuses me.
The other memory ...
3
votes
1answer
89 views
Using comparison operators with pointers to check if it is within an address range?
I'm implementing a function that deallocates a memory location that has been supplied to it, via a call to deallocate_cache(void *ptr).
My memory constructs for the task at hand are the following:
...
0
votes
4answers
66 views
Classes and void pointers
I have the following header:
class MyClass {
private:
static void (*OnRequest)();
static void (*OnReceive)(int numBytes);
public:
MyClass();
static void SetOnReceive(void ...
2
votes
0answers
49 views
void* in variadic functions
I am trying to create a method that accepts an arbitrary number of arguments that will be used to create an NSInvocation (an object wrapper around a method). Can void pointers be passed as arguments ...
4
votes
1answer
107 views
Type punning with void * without breaking the strict aliasing rule in C99
I recently came across the strict aliasing rule, but I'm having trouble understanding how to use void * to perform type punning without breaking the rule.
I know this breaks the rule:
int x = ...
0
votes
3answers
79 views
Deleting void pointer after assigning it with original type
Is it ok to delete the void pointer in the below program.
class Sample
{
public:
int intVal;
float floatVal;
};
main() {
Sample *samObj = new Sample();
void *vPtr = ...
1
vote
2answers
57 views
Why is this not accessing the vector position?
I am writing a backtracking problem for my class and I have to implement some existing functions. This is one of the functions I have to implement. The void *input is where we are supposed to pass in ...
2
votes
1answer
172 views
Cast void pointer to uint64_t array in C
I'm currently working with a Linux kernel module and I need to access some 64-bit values stored in an array, however I first need to cast from a void pointer.
I'm using the kernel function ...
0
votes
3answers
128 views
Why aren't the elements of my Doubly Linked List displayed properly?
The following program receives input strings of the form ins "name_to_insert" birthdate and should insert this information in a doubly linked list. The contents of the list are displayed after each ...
-4
votes
2answers
178 views
Return a struct pointer in void function [closed]
i am new c++ programming and just started with structures and pointers and i got a doubt.
i have a struct and void function()
struct my_struct
{
int x;
}
void my_function(){
my_struct* x=10
}
...
2
votes
3answers
111 views
Casting from void* to struct
I am passing data of type struct Person to a linked list, so each node's data pointer points to a struct Person.
struct Person {
char name[16];
char text[24];
};
I am trying to traverse the list ...
0
votes
1answer
162 views
C++ Builder 2009 - How to Determine if Control's Window is Visible
I have a TWinControl and am trying to determine if the parent window is visible.
I see TWinControl has a property of ParentWindow. The return type of ParentWindow is void *. So I'm curious if I must ...
1
vote
1answer
132 views
How do I assign to a void pointer in a structure another structure?
I need some help in working with Doubly Linked Lists, where the structure of a node contains a pointer to void. If I define another structure where I want to insert the actual data of a node, how do I ...
-3
votes
4answers
191 views
Pointer to void as an argument in a function with no prototype for variable number of arguments
Say I have a function that should accept any number of parameters, so what im coing here is declaring no prototype, and letting the function to be created when it is called in the code. I am using a ...
1
vote
1answer
241 views
void* is literally float, how to cast?
So I'm using this C library in my C++ app, and one of the functions returns a void*. Now I'm not the sharpest with pure C, but have heard that a void* can be cast to pretty much any other *-type. I ...
0
votes
3answers
135 views
Printing a void* variable in C
Hi all I want to do a debug with printf. But I don't know how to print the "out" variable.
Before the return, I want to print this value, but its type is void* .
int
hexstr2raw(char *in, void *out) ...
0
votes
7answers
82 views
C pointer address span on various platforms
A common situation while coding in C is to be writing functions which return pointers. In case some error occurred within the written function during runtime, NULL may be returned to indicate an ...
1
vote
2answers
70 views
Converting void*
I'm really raw with C, and am having trouble with a cast. Here are the lines of my code that I think are relevant:
#define BUF 1025
char hostname[BUF];
hostname = *(char *) qpop(&queue);
And ...
0
votes
3answers
180 views
C: Different type declaration by casting void pointer in a function
The following insertSNode function inserts item and returns updated pointer. Within the insertSnode function, each data from different struct is dereferenced accordingly.
PROBLEM:
I get compiler ...
0
votes
1answer
155 views
Passing a void pointer to a function pointer
In brief, I am attempting to use a void pointer as a parameter to a function pointer, but am getting the compiler error "invalid use of void expression".
I have a doubly linked list (DLL) whose node ...
7
votes
2answers
141 views
How to safely store an id object in a C++ void* member under ARC when no other references hold on to the object?
I'm working with Box2D (C++) and I create an Objective-C object and assign it to a Box2D body's userData property, which is of type void*.
Now in some cases the void* userData may be the only active ...
0
votes
1answer
152 views
Cast integer array to void pointer - pthread_create
for passing arguments, pthread requires void pointer. I want to pass two variables, int and long. To save myself some trouble, I will pass two long instead. So this is what I do:
int main(int argc, ...
0
votes
2answers
34 views
How to store binary value of a long at a pointer?
I have a void pointer that I would like to store the binary value of a long at. For example:
void * p;
long number;
p = malloc(16);
p = memset(p, 0, 16);
number = 15;
/* PRINTS FIRST 16 BYTES */
...
0
votes
1answer
100 views
Finding end of char pointer, int and float
I have a function that will be passed a void pointer. This pointer can either be an int, char, or float. I know what data type will be passed to me by means of an associated value. For example, below ...
0
votes
6answers
130 views
print bits of a void pointer
If I create a void pointer, and malloc a section of memory to that void pointer, how can I print out the individual bits that I just allocated?
For example:
void * p;
p = malloc(24);
...
2
votes
3answers
303 views
c++ convert string into void pointer
I use a library that have a callback function where one of the parameters is of type void *. (I suppose to let to send value of any type.)
I need to pass a string (std::string or a char[] is the ...
0
votes
3answers
122 views
Initializing mixed types (constants) in a void* structure - is it possible?
When I initialize a single element into a void structure, it works fine:
void* CMD_ARRAY[] =
{
{"+++\r"},
{"+++\r"},
{"+++\r"},
};
However, when I try to add more elements to the structure, ...
2
votes
1answer
187 views
Pthread and void* attempt to de-reference a generic pointer
When I debug my PRJ I get this error:
args Error: Multiple errors reported.\ Failed to execute MI command: -var-create -
args Error message from debugger back end: Attempt to dereference a ...
-1
votes
3answers
133 views
void* of a bool[] conversion to std::string [closed]
I need to save some data and the only viable option is a std::string; so I get a bool array passed as a void*. Now I need to save it in a way that I can convert it into a std::string and be able read ...




