if statement shorthand c

C
// if (condition)
//     statement

if (true)
	printf("This is the shorthand");
Source

Also in C: