Program to accept a string and count no of capital letters, no. of small letters and no. of special characters
The program given below is to find the number of capital, small, special characters in a given string.For example:
INPUT: Coding#
OUTPUT:
capital letters=1
small letters = 5
special characters = 1
Program:
| # include<stdio.h> |
| Enter a string :Inter@Prep |

0 Comments