Content deleted Content added
mNo edit summary |
un c++-ify, make it more general |
||
Line 1:
In [[computer programming]], a '''statement block''' is a section of [[computer code|code]] which is grouped together, much like a [[paragraph]]; such blocks consist of one, or more, [[statement]]s. In [[C (programming language)|C]], [[C Plus Plus|C++]], and some other languages, statement blocks are enclosed by [[
==A
<pre>
int main()
Line 9:
</pre>
==A
<pre>
int main()
{
int x=1;
{
x++;
}
return 0;
}
|