Create a package which contains a procedure to accept a text and to check whether it is palindrome or not.
Create a package which contains a procedure to accept a text and to check whether it is palindrome or not.
Share
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
PROCEDURE palindrome(s varchar)
is
begin
FOR i IN REVERSE 1..Length(s) LOOP
l := Substr(s, i, 1);
. . . . . . . . . . . . . . . .
VOTE UP THE ANSWER!
TAP ON ATTACHMENT FOR ANSWER: