Free Pascal <-> Visual C++ .NET | Block statement
Free Pascal
.
Visual C++ .NET
{ }
Description
{}
{statement}
{statement statement}
Input
- statement - statements
Examples
Visual C++ .NET
Block statement the possible of use:y=10;
if (x>1)
{
x=1;
y=y-1;
}
while (y>1)
{
x++;
y--;
}
Block statement in another programming language:
Differences to:
Share