Ver originalint palindrome(char a[]){ int x; for (x=0;x<2;x++) if (a[x] != a[(5-x)-1)]) return 0; //Equivale a false return 1; //equivale a true}