double getValue(cdbfapiPlus* handle, int fieldno);

The function getValue() returns content of any numeric field as a double value.
Do not forget to call readRecord().


{
    // your code
    readRecord( dbf, row );
    printf( "%f\n", getValue( dbf, 0 ) );
    // your code
}