mirror of
https://github.com/Unidata/netcdf-c.git
synced 2024-11-21 03:13:42 +08:00
13 lines
268 B
C
13 lines
268 B
C
|
/* This is part of Unidata's netCDF package. Copyright 2009.
|
||
|
This is a test program for the nc-config utility. */
|
||
|
#include <netcdf.h>
|
||
|
#include <stdio.h>
|
||
|
|
||
|
int
|
||
|
main()
|
||
|
{
|
||
|
printf("NetCDF version: %s\n", nc_inq_libvers());
|
||
|
printf("*** SUCCESS!\n");
|
||
|
return 0;
|
||
|
}
|