__int64 getTicks(cdbfapiPlus* handle, int fieldno);
The function getTicks() returns content of Date and DateTime field as timestamp in milliseconds since 1970.
Do not forget to call readRecord().
{
// your code
readRecord( dbf, row );
printf( "%f\n", getTicks( dbf, 0 ) );
// your code
}