1 2 3 4 5 6 7 8 9 10
main() { if(0) // 0 = false printf(" checks if ==0 , if 0 false, "); if(6) // 6 = non zero = true printf(" checks if ==0 , if non zero true "); }
checks if ==0 , if non zero true