Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR C

if statement shorthand c

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

// OR

(true) ? (/*run if true*/) : (/*run if false*/);
 
PREVIOUS NEXT
Tagged: #statement #shorthand
ADD COMMENT
Topic
Name
9+4 =