Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Modify the original code to count the times a Number occurs. A number is defined as [ 0 - 9 ] + The code is:

Modify the original code to count the times a Number occurs. A number is defined as [0-9]+
The code is: int counter=0; //added counter variable to count the times a number occurs %
[a-zA-Z]+ Igths[yyleng]; //number of numbers ++ between 0-9
. I
In ;//skip if not a letter like no op
%%//separator
// called at the end of file
int yywrap()
{
int i;
printf("Length No. words ??
");
for
if (lgths [i]>0
printf("%5d%10d
",i,lgths[i]);
}
}
printf("Number of numbers: %d
", counter); //prints
the number of numbers
return(1);
image text in transcribed

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

Students also viewed these Databases questions