  close
  Builtin Function



      SSyynnooppssiiss
        Close a file.

      SSyynnttaaxx
        close ( _f_i_l_e_n_a_m_e )

      DDeessccrriippttiioonn
        close takes a string (_f_i_l_e_n_a_m_e) as input, and attempts to close
        the output stream associated with _f_i_l_e_n_a_m_e. close returns TRUE
        (1) if the output stream was successfully closed, FALSE (0) if
        the output stream could not be closed.

        If you want to read the contents of a file that you have created
        with the write function in the present session, then be sure to
        close the file before using the read function.

        Example:


          write( "eig_output", a , vec , val );
          close( "eig_output" );
          read( "eig_output" );






     SSeeee AAllssoo
        printf, fprintf, getline, open, read, readb, readm, write,
        writeb, writem






























