Next: , Previous: NF90_STRERROR, Up: Datasets


2.4 Get netCDF library version: NF90_INQ_LIBVERS

The function NF90_INQ_LIBVERS returns a string identifying the version of the netCDF library, and when it was built.

Usage

      function nf90_inq_libvers()
        character(len = 80) :: nf90_inq_libvers

Errors

This function takes no arguments, and returns no error status.

Example

Here is an example using nc_inq_libvers to print the version of the netCDF library with which the program is linked:

      print *, trim(nf90_inq_libvers())