Hi,

Code:
void foo()
{
    static int a = 0;
}

int main()
{
   return 0;
}
By the standard C++ will a ever be initialized when there are no calls to foo?

many thanks