• Declaration of global variables in one header file
    Hello everyone, I'm trying to split the C source code of one file into nearly 10 different. It does not work properly due to global variables declared in one header file but used in more than one C...
  • HEADER files
    can i use TYPEDEF keywordin the header file as i m using KEIL microvision3 c51 compiler
  • Keil Variable declaration help
    Actually on the external interrupt from port,I want to read the timer 2 value into a variable.(TH2 and TL2). suppose I declare a variable unsigned int timer2_val; How can I move TL2 and TH2 into lower...
  • declare variable of struct with flexible array member at compile time
    Hello everybody, is it possible to use a struct with flexible array members and declare a variable of it at compile time? e.g.: struct sFoo { uint32_t const num_Elements; uint8_t baz[];...
  • declare a variable with flexible array members (c99)
    Hello everyone, in c99 I can make a struct with a flexible array member at the end. Is it possible to create such a variable at compile time? e.g: struct monitoredArray { unsigned int const...