String

C program: Find the frequency of each character in the string

C program: Find the frequency of each character in the string

In this article, we will discuss the concept of the C program: Find the frequency of each character in the given  string

In this post, we are going to learn how to  find the frequency of  the each character of the given string in C programming language

Find the frequency of each character in the string

Code to find the frequency of  the each character in the string

find the frequency of  the each character in the string using for loop

The program allows the user to enter a String and then it finds the frequency of the each character in the given string using for loop in C programing language

program 1

#include <stdio.h>
#include <string.h>
int main()
{
    char str[100];
    int i;
    int freq[256]={0};
    printf("Enter a string\n");
    gets(str);
    for(i=0; str[i]!='\0'; i++){
        freq[str[i]]++;
    }
        for(i=0; i<256; i++){
        if(freq[i] !=0){
            printf("Character '%c' occurs %d time in te string\n",i,freq[i]);
        }
    }
    getch();
    return 0;
}

When the above code is executed, it produces the following result

Find the frequency of each character using do-while loop

 

find the frequency of  the each character in the string using while loop

The program allows the user to enter a String and then it finds the frequency of the each character in the given string using while loop in C programing language

program 2

#include <stdio.h>
#include <string.h>
int main()
{
    char str[100];
    int i;
    int freq[256]={0};
    printf("Enter a string\n");
    gets(str);
    i=0;
    while(str[i]!='\0'){
        freq[str[i]]++;
         i++;
    }
    i=0;
        while(i<256){
        if(freq[i] !=0){
            printf("Character '%c' occurs %d time in the string\n",i,freq[i]);
        }
        i++;
    }
    getch();
    return 0;
}

When the above code is executed, it produces the following result

Find the frequency of each character using while loop

 

find the frequency of  the each character in the string using do- while loop

The program allows the user to enter a String and then it finds the frequency of the each character in the given string using do-while loop in C programing language

program 3

#include <stdio.h>
#include <string.h>
int main()
{
    char str[100];
    int i;
    int freq[256]={0};
    printf("Enter a string\n");
    gets(str);
    i=0;
    do{
        freq[str[i]]++;
         i++;
}while(str[i]!='\0');
    i=0;
        do{
        if(freq[i] !=0){
            printf("Character '%c' occurs %d time in the string\n",i,freq[i]);
        }
        i++;
   } while(i<256);
    getch();
    return 0;
}

When the above code is executed, it produces the following result

Find the frequency of each character using for loop

 

Suggested for you

for loop in C language

while loop in C language

do-while loop in C language

 

Similar post

C++ program to count the total number of characters in the given string

C program to count the total number of characters in the given string

Python program to count the total number of characters in the given string

 

Java program to count the frequebcy of a character of a string

C program to count the frequebcy of a character of a string

Python program to count the frequebcy of a character of a string

C++ program to count the frequebcy of a character of a string

 

Java program: Find the frequency of each character in the string
C++ program: Find the frequency of each character in the string
Karmehavannan

I am Mr S.Karmehavannan. Founder and CEO of this website. This website specially designed for the programming learners and very especially programming beginners, this website will gradually lead the learners to develop their programming skill.

Recent Posts

PHP Star Triangle pattern program

PHP Star Triangle pattern program In this tutorial, we will discuss about PHP Star Triangle…

1 month ago

PHP Full Pyramid pattern program

PHP Full Pyramid pattern program In this tutorial, we will discuss about PHP Full Pyramid…

2 months ago

5 methods to add two numbers in Java

5 methods to add two numbers in Java In this tutorial, we will discuss the…

2 months ago

Python Full Pyramid star pattern program

Python full Pyramid star pattern program In this tutorial, we will discuss  the concept of…

5 months ago

Write a function or method to convert C into F -Entered by user

Write a function or method to convert C into F -Entered by the user In…

10 months ago

How to write a function or method to convert Celsius into Fahrenheit

How to write a function or method to convert Celsius into Fahrenheit In this tutorial,…

10 months ago