A string is said to be palindrome if it remains same after reversing it. That is, it is read same in both ways. For example: MADAM, 1001, 11...
World of Computer Programming in C
A string is said to be palindrome if it remains same after reversing it. That is, it is read same in both ways. For example: MADAM, 1001, 11...
In my last post I had discussed about how to reverse a string . In this post I am showing another method of reversing a string. I will use a...
In this post, I am going to share two ways of reversing a string in C. First one is the easy one. All you need to do is just print the input...
Every string in a c program is actually a NULL terminated character array. So if we initialize an array like this: char str[] = "HELLO...