関数 nc_open は既存のNetCDFファイルとアクセスするために開きます。
int nc_open (const char *path, int omode, int *ncidp);
この 例は nc_open を使って、既存の foo.nc というNetCDFファイルを読取専用、非共有アクセス用に開きます。
#include <netcdf.h>
...
int status;
int ncid;
...
status = nc_open("foo.nc", 0, &ncid);
if (status != NC_NOERR) hendle_error(status);