HomeC ProgrammingC Program to Find the Frequency of a Substring in a String

C Program to Find the Frequency of a Substring in a String

This C program finds the frequency of a substring in a given string.

Problem statement

You are required to write a C program that calculates the frequency of a given substring within a given string.

Your program should prompt the user to enter a string and a substring. The program will then search for the substring within the string and determine how many times the substring appears.

C Program to Find the Frequency of a Substring in a String

#include <stdio.h>
#include <string.h>

int countSubstring(const char *string, const char *substring) {
    int count = 0;
    int substringLength = strlen(substring);
    int stringLength = strlen(string);

    if (substringLength > stringLength) {
        return 0;
    }

    for (int i = 0; i <= stringLength - substringLength; i++) {
        int j;
        for (j = 0; j < substringLength; j++) {
            if (string[i + j] != substring[j]) {
                break;
            }
        }
        if (j == substringLength) {
            count++;
        }
    }

    return count;
}

int main() {
    char string[100];
    char substring[50];

    printf("Enter a string: ");
    fgets(string, sizeof(string), stdin);

    printf("Enter a substring: ");
    fgets(substring, sizeof(substring), stdin);

    // Removing trailing newline characters
    string[strcspn(string, "\n")] = '\0';
    substring[strcspn(substring, "\n")] = '\0';

    int frequency = countSubstring(string, substring);

    printf("Frequency of substring in the string: %d\n", frequency);

    return 0;
}

How it works

  1. The program starts by defining the necessary header files, including stdio.h for input/output operations and string.h for string manipulation functions.
  2. The countSubstring function is declared. It takes two arguments: string (the main string to search in) and substring (the string to search for). It returns an integer value representing the frequency of the substring in the string.
  3. Inside the countSubstring function, several variables are declared: count to keep track of the frequency, substringLength to store the length of the substring, and stringLength to store the length of the main string.
  4. If the length of the substring is greater than the length of the string, it means the substring cannot be found, so the function immediately returns 0.
  5. The function uses two nested loops to compare each character of the substring with the corresponding characters in the string. The outer loop iterates through each character position in the string.
  6. Inside the outer loop, the inner loop iterates through each character of the substring and checks for a match with the corresponding character in the string. If a mismatch is found, the inner loop breaks, and the outer loop continues to the next position in the string.
  7. If the inner loop completes without any mismatches, it means the substring is found at that position in the string. The count variable is incremented.
  8. After checking all possible positions in the string, the final count is returned.
  9. In the main function, variables string and substring are declared to store the user input.
  10. The user is prompted to enter a string using printf. The fgets function is then used to read the input from the user and store it in the string variable.
  11. The user is prompted to enter a substring in a similar manner, and the input is stored in the substring variable.
  12. Next, strcspn is used to remove any trailing newline characters from the string and substring.
  13. The countSubstring function is called with the string and substring as arguments, and the result is stored in the frequency variable.
  14. Finally, the program prints the frequency of the substring in the string using printf.

That’s how the program works! It takes user input, searches for the substring in the string, and calculates the frequency of its occurrence

Input / Output

C Program to Find the Frequency of a Substring in a String

Share:

Leave A Reply

Your email address will not be published. Required fields are marked *

You May Also Like

This C program calculates the volume and surface area of a sphere using its radius. A sphere is a three-dimensional...
This C program converts a Roman numeral to a decimal number. Roman numerals are a system of numerical notation used...
This C program calculates the value of sin(x) using the Taylor series expansion. The Taylor series expansion is a mathematical...