Palindrome EN c
Résolu/Fermé
A voir également:
- Palindrome epitech
- Algorithme palindrome en c - Meilleures réponses
- Palindrome c - Meilleures réponses
- Epita vs epitech - Forum Études / Formation High-Tech
- Epitech diplome reconnu ✓ - Forum Études / Formation High-Tech
- Epitech admission difficile - Forum Études / Formation High-Tech
- Epitech, Epsi, petites questions aux étudiants pour un TS ;) - Forum Études / Formation High-Tech
- Avis sur epitech - Forum Études / Formation High-Tech
17 mars 2008 à 20:26
implicit declaration of function `int getch(...)'
t'a une idée ?
13 déc. 2010 à 15:02
#include <stdlib.h>
#include <string.h>
#define TRUE 1
#define FALSE 0
int IsPalindrome(char s[])
{
int i, length;
length = strlen(s);
for (i=0; i<length/2; i++) {
if (s[i] != s[length-1-i])
return FALSE;
}
return TRUE;
}
int main() {
char chaine[64];
printf("entrez une chaine\n");
gets(chaine);
if (IsPalindrome(chaine)) {
printf("%s est un palindrome\n", chaine);
} else {
printf("%s n_est pas un palindrome\n", chaine);
}
system("pause");
return 0;
}