struct tm getDateTime(int fieldno);
The function getDateTime() returns content of Date and DateTime field.
Do not forget to call readRecord().
Do not forget to call readRecord().
{
// your code
dbf->readRecord( row );
printf( "%s\n", asctime( dbf->getDateTime( 0 ) ) );
// your code
}