You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

25 lines
344 B

#include <stdio.h>
// this macro should NOT be modified ...
#define CHK(...) \
do \
{ \
a+=1; \
a=b=0; \
c<<1; \
} while (0+0)
// ... whereas this should be indented and formatted
int main()
{
int a,b,c = 0;
if (a < c)
{
c += 1;
}
a = b = 0;
c << 1;
CHK;
}