• type casting?
    Hello, a question about how C166 handles type conversions: I have this: unsigned long c; unsigned char i, d if the following code is executed: c = 20403776; i = 0; d = 3; c += pow...
  • Casting without warning
    Hi, I really like to compile all my code with the highest warning level and having the beautifull result of 0, errors and 0 warnings! The problem is that I need to access to functions as pointers...
  • regarding type casting
    my program stop running while executing the following line. (struct IFramHead *) ptr) ->length = Length; where declaration are as bellow: 1: unsigned int Length 2: struct IFramHead { ...
  • 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*...
  • 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...