Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

write a C Program Count the number of digits (0-9) from standard input, print the frequency of each digit, must use arrays. I have someof

write a C Program

Count the number of digits (0-9) from standard input, print the frequency of each digit, must use arrays. I have someof the code started. My program does not seem to add to the array count.

#include #define SIZE 10

int main(){ int digit[SIZE] = {0}; int i, x; int c;

while( (c = getchar()) != EOF) { putchar(c);

for ( i = 0; i < SIZE; i++ ) { if (c == i) {

digit[i]++;

}

} } for ( i = 0; i < SIZE; i++ ) { printf(" %d: %d", i, digit[i]);

} }

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

More Books

Students also viewed these Databases questions

Question

In Boolean logic, 1 } OR 0 results in One ( 1 ) 0 1 Zero ( 0 ) 1 0

Answered: 1 week ago

Question

How can a coach create a supportive goal-setting atmosphere?

Answered: 1 week ago

Question

What is the relation of physical mathematics with examples?

Answered: 1 week ago

Question

What are oxidation and reduction reactions? Explain with examples

Answered: 1 week ago