In programming, curly braces are used for a lot of different things. Different languages use them in completely different contexts.
If you're talking about program flow in C++, I like to think of them as tiers that progressively get more specific. Example:
string myName = "Max";
if (myName[0] == 'M') // If the first letter of myName is M...
{
cout << "The first letter is M." << endl;
if (myName.length() == 3) // If myName is three characters long...
{
cout << "myName is three chars long." << endl;
if(myName[2] == 'x') // If the third letter is x...
{
cout << "The third letter is x." << endl;
}
}
}
They're also used in array assignment in C++, like so:
int myArray[5] = {1, 2, 3, 4, 5};
There are other uses, but these two are probably the most common.
:-{– James McNellis Nov 30 '10 at 1:32