answersLogoWhite

0

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

8y ago

What else can I help you with?

Related Questions

Write a function to reverse a string and to display it?

Yes.


How do you reverse a MOD function in excel?

Ctrl Z


How do you reverse a string in PHP?

A predefined function can reverse a string as shown below:echo strrev('pizza'); // outputs: azzip


How do you reverse a string with out using strrev?

By writing user defined function.


Reverse of a string without using string handling function?

shashi


What key would you use to reverse the function of the shift key?

CONYROL


Why car shakes in reverse?

A vehicle will shake in the reverse function when there is an issue with the engine, although other issues could cause this issue as well.


Car shakes in reverse?

A vehicle will shake in the reverse function when there is an issue with the engine, although other issues could cause this issue as well.


What function of a PWC will not operate at idle speed?

The function of a PWC (personal watercraft) that will not operate at idle speed is typically the reverse function. Most PWCs require a certain throttle input to engage reverse gear, as the propulsion system needs sufficient power to shift into reverse. At idle speed, the engine may not provide enough thrust or pressure to activate this feature effectively.


Does a healthy body lead to better brain function?

Not really, but a sickly body can degrade brain function ... so its true in reverse.


How does a zener diode maintain constant output voltage?

sharp reverse breakdown function


How do you reverse a string in PHP without using a function?

Without any function is impossible. So I'll assume you mean any coded function, in which case the predefined function below is your answer.$string = strrev($string);