.BG
.FN DBLEPR
.FN INTPR
.FN REALPR
.TL
Printing from a Fortran Routine
.CS
SUBROUTINE DBLEPR(LABEL,NCHAR,DATA,NDATA)
SUBROUTINE  INTPR(LABEL,NCHAR,DATA,NDATA)
SUBROUTINE REALPR(LABEL,NCHAR,DATA,NDATA)
.AG LABEL
quoted string label for the printout.
.AG NCHAR
number of characters in the label.  Can be passed as `-1' if you have
a well-behaved Fortran compiler that inserts null bytes at the end
of strings.
To eliminate the label, pass `0' for `NCHAR'.
.AG DATA
the vector of data values (respectively
double precision, integer, or real for the
three subroutines).
.AG NDATA
the number of data values to be printed.
.PP
The specified data will be printed, using the same formatting procedures
followed for automatic printing in S.
.KW programming
.WR
