1
edit
Changes
→Code Blocks
* static prefix: static int s_staticInt;
=== Code Blocks ===
<syntaxhighlight lang="cpp">
/* examples */if(condition) // std 1
{
doSomething();
doSomething();
}
else
{
doSomethingElse();
doSomethingElse();
}
if (exists()) pop(); // std 2
for (i=0; i<10; i++, str[i] = '\0'); // std 2
while (exists()) pop(); // std 2
</syntaxhighlight>