answersLogoWhite

0


Best Answer

The CTOD() function converts character data to a date value.

The DTOC() function converts a date value to character data.

Example:

SET CENTURY ON && Shows the century value.

STORE DATE() TO val && Store today's date value.

STORE DTOC(val) TO str && Store the date value as character data.

? 'Today is ', str && Print today's date.

STORE CTOD(str) + 90 TO exp && Store the date 90 days from today.

? 'Your 90-day warranty expires on ', DTOC(exp) && Print the expiry date.

User Avatar

Wiki User

7y ago
This answer is:
User Avatar
More answers
User Avatar

Anonymous

Lvl 1
3y ago

Dtoc

This answer is:
User Avatar

User Avatar

Anonymous

Lvl 1
3y ago

Dotc

This answer is:
User Avatar

User Avatar

Anonymous

Lvl 1
3y ago

Dotc

This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What is the reverse of the CTOD function?
Write your answer...
Submit
Still have questions?
magnify glass
imp