top button
Flag Notify
    Connect to us
      Site Registration

Site Registration

Write a C program that reads a string from the user and display the middle term of the string?

–2 votes
460 views
Write a C program that reads a string from the user and display the middle term of the string?
posted May 5, 2017 by Neeraj Kumar

Looking for an answer?  Promote on:
Facebook Share Button Twitter Share Button LinkedIn Share Button
What do mean by middle term of the string ?

Similar Questions
–1 vote

Write a C program to check if the given string is repeated substring or not.
ex
1: abcabcabc - yes (as abc is repeated.)
2: abcdabababababab - no

0 votes

Given a string, add some characters to the from of it so that it becomes a palindrome.
e.g.
1) If input is "abc" then "bcabc" should be returned.
2) input -> "ab" output -> "bab"
3) input -> "a" output -> "a"

...