ALP menu-driven program to perform the string operations (64-bit)
kw.asm
Output
Note: It is mandatory to perform all the operations one by one, while executing this program kodingwindow@kw:~$ nasm -felf64 kw.asm
kodingwindow@kw:~$ ld kw.o && ./a.out ——————————————————————————————————————————— ALP for the string operations ——————————————————————————————————————————— 1.Enter the string 2.Calculate the length 3.Reverse the string 4.Check whether string is palindrome or not 5.Exit ——————————————————————————————————————————— Enter your Choice 1 Enter the string LOL ——————————————————————————————————————————— ALP for the string operations ——————————————————————————————————————————— 1.Enter the string 2.Calculate the length 3.Reverse the string 4.Check whether string is palindrome or not 5.Exit ——————————————————————————————————————————— Enter your Choice 2 Length of the string is 03 ——————————————————————————————————————————— ALP for the string operations ——————————————————————————————————————————— 1.Enter the string 2.Calculate the length 3.Reverse the string 4.Check whether string is palindrome or not 5.Exit ——————————————————————————————————————————— Enter your Choice 3 Reverse string is LOL ——————————————————————————————————————————— ALP for the string operations ——————————————————————————————————————————— 1.Enter the string 2.Calculate the length 3.Reverse the string 4.Check whether string is palindrome or not 5.Exit ——————————————————————————————————————————— Enter your Choice 4 String is palindrome ——————————————————————————————————————————— ALP for the string operations ——————————————————————————————————————————— 1.Enter the string 2.Calculate the length 3.Reverse the string 4.Check whether string is palindrome or not 5.Exit ——————————————————————————————————————————— Enter your Choice 5 kodingwindow@kw:~$
What Next?
ALP to convert the hexadecimal to BCD number (64-bit)
ALP to convert the Binary Coded Decimal (BCD) to hexadecimal number (64-bit)
ALP to print the addition of N hexadecimal number (64-bit)
Advertisement