Put braces around if statement code, part 2

This tip submitted by PING on 2005-01-14 21:11:28. It has been viewed 23973 times.
Rating of 5.3 with 184 votes



Try out this little program and you will realise that braces need to be put after the if statement.

 
 int main()
{
    int a=0;
    if(a!=0)
        #define a 5
        printf("%d",a);
    return 0;
}




More tips

Help your fellow programmers! Add a tip!