1.
C program to find total number of alphabets, digits or special characters in a string
Input
Input string: Today is Mon, 15/03
Output
Alphabets = 10
Digits = 4
Special characters = 1
2. C program to find reverse of a string
Input: Hello
Output
Reverse string: olleH
3. C program to find the first occurrence of a character in a string
Input
Input string: Hello
Input character to search: o
Output
'o' is found at index 4
4. C program to remove first occurrence of a word from string
Input
Input string : Hello world.
Input word to remove : o
Output
Hell wrld