Here is the program to find the total number of palindromes present in the entered sentence. This program internally uses the logic to find the palindrome, discussed earlier.
Logic : The given string is traced word-by-word till the EOL. To trace the words, it uses the logic of earlier program, where we counted the number of words. Each time, Each time, when we find the full word, we pass the ord to the internal block which checks if the word is a palindrome or not, the logic discussed earlier.
#include<stdio.h>
#include<conio.h>
int stpal(char str[50], int st, int ed);
void main()
{
char str[50];
int pal = 0, len = 0, i, start = 0, end;
clrscr();
printf(“nnt ENTER A SENTENCE…: “);
gets(str);
while(str[len]!=’