if statement shorthand c

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

// OR

(true) ? (/*run if true*/) : (/*run if false*/);(integer == 5) ? (THENEXPR) : (ELSEEXPR);
Source

Also in C: