Category: String

18
Apr
2017

String Problem: Uppercase to Lowercase, Lowercase to Uppercase

Problem 70: Case Fix You are given a string mixed with uppercase and lowercase letters . Your…

18
Apr
2017

String Problem: ASCII table related

Problem: Write a program which takes a string of alphabet as input and replace all the characters with…

17
Apr
2017

Concatanated String Problems

Problem: Take three different string as input from the user(“We”, “ Love” and “ Bangladesh”). Now concate these…

17
Apr
2017

Reverse a string

Problem 65: Reverse Take a word from user and print the word in reverse order. [If user…

16
Apr
2017

String Refreshing

//Program to assign string and display the same #include<stdio.h> #include<stdlib.h> int main() { char str[]=”LearnGood”; printf(“Assigned string:…

15
Feb
2017

String and Hackerearth

String Upper: #include<iostream> #include<string> #include<cstdio> using namespace std; void upper_string(char st[]); int main(){ char str[100]; cout<<“Enter string:…