221. WAP to input any string and reverse it.       CLS   INPUT "ENTER ANY STRING"; S$     FOR I = LEN(S$) TO 1 STEP -1   B$ = MID$(S$, I, 1)   W$ = W$ + B$   NEXT I   PRINT "REVERSED STRING IS "; W$   END     USING SUB PROCEDURE     DECLARE SUB REV (S$)   CLS   INPUT "ENTER ANY STRING"; S$   CALL REV(S$)   END     SUB REV (S$)   FOR I = LEN(S$) TO 1 STEP -1   B$ = MID$(S$, I, 1)   W$ = W$ + B$   NEXT I   PRINT "REVERSED STRING IS "; W$   END SUB     USING FUNCTION PROCEDURE     DECLARE FUNCTION REV$ (S$)   CLS   INPUT "ENTER ANY STRING"; S$   PRINT "REVERSED STRING IS "; REV$(S$)   END     FUNCTION REV$ (S$)   FOR I = LEN(S$) TO 1 STEP -1   B$ = MID$(S$, I, 1)   W$ = W$ + B$   NEXT I   REV$ = W$   END FUNCTION     222.    WAP to input any string and check whether the given string is palindrome or not.     CLS   INPUT "ENTER ANY STRING"; S$   FOR I = LEN(S$) TO 1 STEP -1   B$ = MID$(S$, I, 1)   W$ = W$ + B$   NEXT I...
 
Comments
SD MINI chip and it runs fine on any computer with a USB to SD mic adapter. Lots of room left for all my legacy programs. By saving the programs as txt files I can browse thru program structure on my Kobo e-reader anywhere with my feet up.
CM:\Old Guy
SD MINI chip and it runs fine on any computer with a USB to SD mic adapter. Lots of room left for all my legacy programs. By saving the programs as txt files I can browse thru program structure on my Kobo e-reader anywhere with my feet up.
CM:\Old Guy
Penjepit LCD