Academic Integrity: tutoring, explanations, and feedback — we don’t complete graded work or submit on a student’s behalf.

hello there, i have a question about programming c Write a void function which t

ID: 3600881 • Letter: H

Question

hello there, i have a question about programming c Write a void function which takes 5 arguments. Arguments: A char array. An int representing the size of the char array. A pointer to an int which you should store the number of letters in the char array (uppercase and lowercase). A pointer to an int that you should store the number of digits in the char array (from zero to nine). A pointer to an int, that you should store the number of anyother characters (non-letters, non-digits) in the char array.
many thanks hello there, i have a question about programming c Write a void function which takes 5 arguments. Arguments: A char array. An int representing the size of the char array. A pointer to an int which you should store the number of letters in the char array (uppercase and lowercase). A pointer to an int that you should store the number of digits in the char array (from zero to nine). A pointer to an int, that you should store the number of anyother characters (non-letters, non-digits) in the char array.
many thanks hello there, i have a question about programming c Write a void function which takes 5 arguments. Arguments: A char array. An int representing the size of the char array. A pointer to an int which you should store the number of letters in the char array (uppercase and lowercase). A pointer to an int that you should store the number of digits in the char array (from zero to nine). A pointer to an int, that you should store the number of anyother characters (non-letters, non-digits) in the char array.
many thanks

Explanation / Answer

void functionName(char arr[], int size, int *numberOfLetters,int *numberOfDigits, int *numberOfOtherCharacter) {

}

Thanks a lot. Please let me know if you have any doubt.