HP SunSoft Pascal 4.0 Manual de usuario Pagina 35

  • Descarga
  • Añadir a mis manuales
  • Imprimir
  • Pagina
    / 333
  • Tabla de contenidos
  • MARCADORES
  • Valorado. / 5. Basado en revisión del cliente
Vista de pagina 34
Pascal Programs 11
2
Compiling the Program
Use the pc command to compile the program and store it in the executable file
copy. Here is the command format:
hostname% pc -o copy copy.p
Running the Program
Because the standard files input and output default to the terminal, the
program simply echoes each line you type. The program terminates when you
type the end-of-file (Control-d) character at the beginning of a line. Try it:
Redirecting I/O
To write the output to a file instead of to the terminal, use the redirection
operator, >, followed by a file name. For instance, to write to a file called
data, enter the following:
hostname% copy
hello, are you listening?
hello, are you listening?
goodbye, I must go now.
goodbye, I must go now.
(Control-d)
hostname% copy > data
hello, are you listening?
goodbye, I must go now.
(Control-d)
Vista de pagina 34
1 2 ... 30 31 32 33 34 35 36 37 38 39 40 ... 332 333

Comentarios a estos manuales

Sin comentarios