• Sparse "switch" construct
    Is there a way to force the compiler to generate a jump table for a sparse "switch" construct?
  • Sparse "switch" construct
    Is there a way to force the compiler to generate a jump table for a sparse "switch" construct?
  • Construct a byte from bits
    Hello everybody, I am very new to C language. In my project I get data serially from a port pin. I want to save the first 8 bits to one variable, another to second & so on. In all I want to save...
  • Construct a byte from bits
    Hello everybody, I am very new to C language. In my project I get data serially from a port pin. I want to save the first 8 bits to one variable, another to second & so on. In all I want to save...
  • How to deal with va_xxx constructions?
    Hello, I have the following piece of code: static void *Circle_ctor( void *_self, va_list *app ) { struct Circle *self = ( (const struct Class *) Point )-> ctor( _self, app ) ; self->rad =...