1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52
|
<HTML>
<HEAD>
<TITLE>TSP (libtsp/VR) - VRlPrint</TITLE>
</HEAD>
<BODY BGCOLOR="#FFFACD">
<H2>VRlPrint</H2>
<HR>
<H4>Routine</H4>
<DL>
<DT>
void VRlPrint (FILE *fp, const char Header[], const long int x[], int N)
</DL>
<H4>Purpose</H4>
<DL>
<DT>
Print a long integer array along with a header text
</DL>
<H4>Description</H4>
This routine prints the values of a long int array along with an identifying
header.
<H4>Parameters</H4>
<DL>
<DT>
-> FILE *fp
<DD>
File pointer for the output. If fp is NULL, no printing occurs.
<DT>
-> const char Header[]
<DD>
Character string for the header. The header line is omitted if the
header string is empty.
<DT>
-> const long int x[]
<DD>
Array of N long ints
<DT>
-> int N
<DD>
Number of elements in x
</DL>
<H4>Author / revision</H4>
P. Kabal Copyright (C) 1996
/ Revision 1.1 1996/05/31
<H4>See Also</H4>
<A HREF="VRdPrint.html">VRdPrint</A>,
<A HREF="VRfPrint.html">VRfPrint</A>,
<A HREF="VRiPrint.html">VRiPrint</A>
<P>
<HR>
Main Index <A HREF="../libtsp.html">libtsp</A>
</BODY>
</HTML>
|