Hi,
After tring my hand at perl and a little bit of C, I am tring to learn C++ and already i am bogged down by the details and pitfalls. Consider this:-
int x = 1;
{
int x = x; // garbage value of x
}
int const arr = 3;
{
int arr[arr]; // i am told this is perfectly valid and declares an array of 3 ints !!
}
Huh, Why the difference ?
To Clarify: Use of the same name is valid in one case and invalid in another.
Thanks,
