EDIT:
the exact error I get is : error: request for member ‘q’ in something not a structure or union
I corrected the typos I left in the code. It happened while formatting it for SO(camel case..).
context
Problem to set a void pointer to a struct.
My initial goal : I would like to point to a structure from a void pointer. pointMe.a will point to pointMe2 so that I can set pointMe2.q with an integer.
My final goal : being able to cast that void pointer to anything, while reusing my pointMe structure. Maybe I could point to a structure and soon after to a char or an integer. Polymorphism I think.
Failure
Apparently, in the 3) of the code below, q is not part of a struct or a union. Looking at the pointers addresses, i know I am close but not there yet.
My funky code
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
typedef struct {
void * a;
}pointMe;
typedef struct {
int q;
}pointMe2;
int main(void)
{
pointMe arrow;
pointMe2 * flesh;
flesh = malloc(sizeof(pointMe2));
flesh->q = 4;
printf("1)\n Value: %d Address: %p\n",flesh->q,flesh );
arrow.a = flesh;
printf("2)\n arrow.a's address: %p flesh's address: %p\n",arrow.a,flesh );
printf("3)\n arrow.a's address: %p Value of q : %d\n",arrow.a, *(arrow.a)->q );
free(flesh);
return 0;
}
There are some errors [typos i think] in your code.
pointme arrow;
should bepointMe arrow;
and so on. [Modified in below code]value of
should be the value [int
type], so use%d
withprintf()
.Check the below code