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.
Chat with our AI personalities
sharp reverse breakdown function
ALGORITHM REVERSEINPUT (string)"STRINGLENGTH() would be a function that returns the lenght of the string"FOR (i = STRINGLENGTH(string); i >= 0; i--) BEGINDISPAY (string[i])END FOREND REVERSE
void reverse (char* str) { char *left, *right, temp; left = right = str; while (*right) ++right; --right; while (left < right) { temp = *left; *left = *right; *right = temp; ++left; --right; } }
You mean the byte-order? x=((x>>8)&0xff) | ((x&0xff)<<8);
//This function reverse any given string, except nullstatic string Reverse(string s) {char[] temp = s.ToCharArray();Array.Reverse(temp);return new string(temp);}//The main usagestring inputString = Console.ReadLine();Console.WriteLine(Reverse(inputString));