POSITION:028,114
COLOUR:STANDARD
TEXT:00,This step is necessary, otherwise the sequence itself will be treated as
TEXT:16,a list of values and only the first character will be printed:
COLOUR:EUPHORIA
TEXT:32,printf(1,"%s\n","Euphoria")
COLOUR:POINTS
TEXT:00,                                       - Only "E" is printed.
COLOUR:EUPHORIA
TEXT:32,printf(1,"%s\n",{"Euphoria"})
COLOUR:POINTS
TEXT:00,                                       - "Euphoria" is printed.
COLOUR:STANDARD
TEXT:32,A series of demo programs have been assigned to this page to help
TEXT:16,clarify printf().
TEXT:32,We would normally explore the other side of screen output by introducing
TEXT:16,library routines that accept data from the keyboard. However, because
TEXT:16,some keyboard library routines require a program to execute a block of
TEXT:16,statements based on a condition or for a set number of times in order
TEXT:16,to work properly, a detour is needed. The next chapter will show you how
TEXT:16,to change the way your program executes.
