c if int

C
int foobar = ...;

if (foobar) // <=> if (foobar != 0)
{ 
	...
}
Source

Also in C: