palindrome :D
//+ Jonas Raoni Soares Silva //@ http://jsfromhell.com #include <stdio.h> int isPalindromo( char *s ){ char *s2 = s + strlen( s ) - 1; if( !*s ) return 1; while( *s++ == *s2-- && *s ); return !*s && *( --s ) == *( ++s2 ); } int main( int argc, char *argv[] ){ char s[255]; printf( "Texto:" ); gets( s ); printf( "%s \n", isPalindromo( s ) ? "YES" : "NO" ); system( "pause" ); return 0; }