You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
int baz() { return 0; }
|
|
|
|
int main()
|
|
{
|
|
int a, b;
|
|
int f[2] = { 1, 2 };
|
|
enum foo { BAR = 15 };
|
|
if (1) { a++; b++; }
|
|
while (0) { a++; b++; }
|
|
do { a++; b++; } while (0);
|
|
for (;;) { a++; b++; };
|
|
} |