Next: , Previous: NF_STRERROR, Up: Datasets


2.4 Get netCDF library version: NF_INQ_LIBVERS

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

Usage

     CHARACTER*80 FUNCTION NF_INQ_LIBVERS()

Errors

This function takes no arguments, and thus no errors are possible in its invocation.

Example

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

     INCLUDE 'netcdf.inc'
        ...
     PRINT *, NF_INQ_LIBVERS()