Nth term for the given series
September 03, 2018
Find the Nth term for the given series Write a C program to find the Nth term for the given series 1,2,3,5,8,13,21..... whose first term is 1 and second term is 2 and Nth term will be the sum of term(N-1) and term...
Check palindrome without using library functions
September 01, 2018
Check palindrome without using library functions write a C program to check the string whether it is palindrome or not CONSTRAINT : without using library functions Sample input 1: madam Sample output 1: Palindrome Sample input 2 : jobat Sample output 2 :...