I am trying to initialize an array of bools like so:
bool FcpNumberIsOk[MAX_FCPS]={true};
but when I debug it, I only see the first element of the array initialized, the others are false. How can that be so? I am using Qt on ubuntu 10 and the initialization is done on a local array inside a method.
Ok thanks for your answers.