mirror of
https://github.com/Unidata/netcdf-c.git
synced 2024-11-21 03:13:42 +08:00
19 lines
265 B
C
19 lines
265 B
C
/* This example program is part of Unidata's netCDF library for
|
|
scientific data access.
|
|
|
|
How about a short, but meaningful, netCDF program?
|
|
|
|
Ed Hartnett, 6/19/4
|
|
*/
|
|
|
|
#include <stdio.h>
|
|
#include <string.h>
|
|
#include <netcdf.h>
|
|
|
|
int
|
|
main()
|
|
{
|
|
return 0;
|
|
}
|
|
|