Jika SHORTHAND PERNYATAAN C

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

// OR

(true) ? (/*run if true*/) : (/*run if false*/);
Comfortable Caterpillar