• void pointer
    Hi, Any idea what does following do and how ? ((void (code *) (void)) 0) (); Any help would be great
  • casting of pointers in c
    Hello again gays. I want to know about casting and type conversion in C programing language . for example how this expression work and what is the return value ? char *strval ; (const char*...
  • void pointer behaviour ?
    Hi, I observed a strange behaviour (for me only) of void pointer. I wrote a code to access an integer through void pointer as below: void *ptr; int a[2] = {1,2}; ptr = (int *)&a; ptr++; /...
  • Can pointer types be cast?
    Here is my problem, i have several simmilar structue definitions (containers for messages) struct FIRST{ unsigned char Word_Pos[8] unsigned char Data[8] unsigned char Msg_Len }; struct FIRST...
  • struct and pointer
    hi, i need a solution on how to read a struct which includes serveral types of vars with a pointer of type char. example: struct test { char a; int b; int c; char d; }; struct test s_test;...