POD-05-Sep-2016

gladiator

Write a program to find the pairs of letters in a word (provided by user) each of which has as many letters between them in the word as there are between them in the alphabet. Ex: Word: StudyKorner pairs: St, Su, tu, to

POD-04-OCT-2016

Raju Pal

Write a program to toggle every character of a given string. For example Input:   Hello, ThiS is for YOUr heLP. Output: hELLO, tHIs IS FOR youR HElp.

POD-02-OCT-2016

Raju Pal

Write a program to convert a given string into sentence case. Ex: Input: 1. Hello, let’s Know about the Sentence case like In MS-WORD. 2. learning by doing. what you say ! Output: 1. Hello, lets know the sentence case like in ms-word. 2. Learning by doing. What you say !

POD-01-OCT-2016

Raju Pal

Write a program to convert a string into another format in which each word starts with a character in upper case. For example: Input: Output: Note: Extract the first character of each word and replace it with its upper case character.

POD-30-Sep-2016

Raju Pal

Write a program to find starting index of a subsequence belongs to a given string (should be entered by user). Ex: User given string: Welcome to StudyKorner, have a good day Now provide the subsequence to be matched: etoSt Output: 6  (as the first character of given subsequence have a index value 6 in the string provided by user) Note: …

POD-29-Sep-2016

gladiator

Write a program to sort characters of each word of a user provided sentence. Sentence can be of variable length and may contain any number of words. Ex: Hello, how are you? eHllo, how aer ouy? Note: sentence breaking symbols, like: , . ? etc should remain at their original position. Hint: Break the problem into small tasks as: 1st …

POD-28-Sep-2016

gladiator

In continuation to POD-27-Sep-2016, Write a program to reverse characters of each word of a user provided sentence, omitting repeated letters . Sentence can be of variable length and may contain any number of words. Ex: Hello, how are you? oleH, w ra uy? Note: sentence breaking symbols, like: , . ? etc should remain at their original position. Hint: …

POD-27-Sep-2016

gladiator

Write a program to reverse characters of each word of a user provided sentence. Sentence can be of variable length and may contain any number of words. Ex: Hello, how are you? olleH, woh era ouy? Note: sentence breaking symbols, like: , . ? etc should remain at their original position. Hint: Break the problem into small tasks as: 1st …

POD-26-Sep-2016

gladiator

Write a program to reverse a string word wise. Note: The string should be taken from user at run time. Characters within word are not to be reversed. If you are an exert, implement using dynamic memory allocation for string, otherwise use array and display the maximum character that user can enter. If user does not the criteria, display an …

POD-24-Sep-2016

gladiator

Write a Program to divide two user entered complex numbers of the form: a+ib. (Where a,b can be any float values, including negative numbers).