Our Feeds
Categories
Home
About
XploitZ
Vulnerability
Hacking
Shellcode
Buffer Overflow
Programming
CSS
C
CPP
Python
PHP
Java
HTML
Android
Video Tutorials
PlayStore*
Home
C
Programming Language
Programming Languages Theory
Palindrome Checker in C
Thursday, 8 November 2012
Ajith KP
Palindrome Checker in C
Ajith KP
November 08, 2012
No comments :
Its a BCA practical examination question.
/* PALINDROME_CHECKER.C TERMINALCODERS.BLOGSPOT.IN */ #include
#include
void main() { char str[10]; int i,l; printf("Input word: "); gets(str); l=strlen(str); for(i=0; i<=l/2;i++) { if(str[i]==str[l-1-i]) { printf("Palindrome"); break; } else { printf("Not palindrom"); break; } } }
Like us in FACEBOOK:
http://facebook.com/terminalcoders
_________________________________________________________________________
Next
« Prev Post
Previous
Next Post »
Popular Posts
Histogram Equalization Algorithm and Implementation in Java
Histogram equalization is a technique used to enhance the contrast of image using the histogram of image. The histogram of image represents...
Beautiful Black-Green Theme for Hackers [GNOME/GTK/KALI LINUX]
If you like this theme download it from here: http://downloads.ziddu.com/download/24041123/HackerTheme.tar.gz.html ...
Digital Camera Day or Night - Python Solution
"You need to construct a feature in a Digital Camera, which will auto-detect and suggest to the photographer whether the pi...
Easiest way to convert RGB Color Image to Gray scale Image in Java
Hello GuyZ, I would like to share Java code to convert RGB images to Gray scale images. I have seen many Java codes which converts im...
Fist GUI Program - FASM
I hope you have read the previous posts about FASM. Else please read it here: http://terminalcoders.blogspot.in/search/label...
Web Application Vulnerabilities: Dawn, Detection, Exploitation and Defence Slide Show
ABSTRACT Web applications are popular software application types in which the client runs the application stored in server in his/her we...
Simple HTTP Sever[Python]
Source Code Download Link: Simple HTTP Server[Python] HTTP server coding is simple in python because python 2.7 is included modules like Sim...
OpenGL: Line Drawing - DDA Algorithm
Hello GuYz, DDA algorithm is another popular line drawing algorithm. Source Code #include <gl/glut.h> #include <Wind...
Flower Falling Effect
Did You Like this html page? Did you like flower falling effect? Make your defaced pages beautiful. like this. Here Source code of this html...
..:: SUPPORT US ::..
Labels
Programming Language
Programming Languages Theory
Adv. Hacking
Hacking
Vulnerability
C++
ALOGORITHM
CPP
Java
C
Linux
Python
PHP
Shellcode
Buffer Overflow
JavaFX
x64
Android
Digital Image Processing
Graphics
Image Processing
Metasploit
OpenGL
AI
FASM