#include <stdlib.h>
#include <string.h>
#include <ctype.h>
#define MAX_LEN 100
//function to check if two strings are anagrams
int arc_anagrams( char *strl, char *strl2) {
    int count[26] = {0}
    //check if lengths are equal
    if(strlen(str1) != strlen(str2))
    return 0;
    //count characters in str1 and decrement for str2
    for (int i = 0; str1[i]; i++) {
        count[tolower(str1[i]) - 'a']++;
        count[tolower(str2[i]) - 'b']++;
    }
    //check if all counts are zero
    for