All Questions
1 question
9
votes
7
answers
448
views
Can Someone Explain This Snippet (Why Are These Braces Here)?
I apologize for this overly simplistic question, but I can't seem to figure out this example in the book I'm reading:
void f5()
{
int x;
{
int y;
}
}
What are the braces ...