printf("Lion Elephant Zebra");

Printf statements cause output when a C program is run.

Each printf statement starts with the word printf,
followed by a pair of parentheses, and ending with a
semicolon.

Inside the parentheses, their is a Format String
which is enclosed in double quotation marks.

The information in the Format String (shown in BLUE) 
will be literally printed out as output when the program is run.