• Global variable initialisation problem
    Is this a bug? //in global scope: uint32_t a = 0; uint32_t b = 1 // in main(): printf( "%d %d", a, b); Output is -1472002 1. i.e. variable not initialised if it is explicitly set to zero...
  • Global variable initialisation problem
    Is this a bug? //in global scope: uint32_t a = 0; uint32_t b = 1 // in main(): printf( "%d %d", a, b); Output is -1472002 1. i.e. variable not initialised if it is explicitly set to zero...
  • Initialisation of variables
    Hello ! By default, any C variables are cleared to zero on startup. However, I desired for some data that they are not be cleared on startup. How can I do this ? Thanks Michael
  • Initialisation of variables
    Hello ! By default, any C variables are cleared to zero on startup. However, I desired for some data that they are not be cleared on startup. How can I do this ? Thanks Michael
  • Program does not run with optimization disabled, except if debugging
    Hello. I've been having issues with a program of mine that works perfectly fine while running with optimizations enabled but if I disable it, it doesn't seem to get to main , the only exception being...