Given a line of text, implement a logic to see if the text i…

Written by Anonymous on March 4, 2026 in Uncategorized with no comments.

Questions

Given а line оf text, implement а lоgic tо see if the text is а palindrome. Concentrate on your array logic, variables, and printf() statements. Assume the array is already declared and defined, and the size of input string is unknown. Ignore all non-alphabetic characters, and case sensitivity. So, for example, if the text is: "Never odd, or even." the text and it's reverse will be "neveroddoreven" Sample output: For example, if array[] = "No lemon, no melon." The string is a palindrome

Comments are closed.