STRINGS
19 programming challenges to help you master the fundamentals of C LANGUAGE.
1
Enter a string from user and convert in uppercase ?
2
Enter a string from user and convert into lowercase ?
3
Enter a string from user and convert into sentence case ?
4
Enter a string from user and convert into title case ?
5
Enter a string from user and convert into toggle case ?
6
Enter a string from user and final length of the string ?
7
Enter a string from user and compare those string ?
8
Enter a string from user and concatenate the string ?
9
Enter a string from user and copy that string into another string ?
10
Enter the string from user ,enter a number from user ,if the user enter 0 then you will print first character of string ,if the user enter 1 then you will print second character of string ,if user enter 2 then you will print third character of string ,if user enter 3 then you point fourth character of string and if out of string then you will print out of bound ?
11
Enter the string from user and print each character in new line ?
12
Enter the string from user and copy reverse order into another string ?
13
Enter two string from user and print difference each character ?
14
Enter the string from user and enter a character , it is exist or not ?
15
Enter the string from user and enter a character if it is exist then print the bound number ?
16
Enter the string from user and count all vowels ?
17
Enter the string from user and enter bound number and print character on that bound ?
18
String palindrome example (using reverse) ?
19