Hi,
void f()
{
int i1; // i1 now holds undefined value
int i2 = int(); // i2 now holds 0
}
Is the above true?
void f()
{
int i1; // i1 now holds undefined value
int i2 = int(); // i2 now holds 0
}
Is the above true?
Comment