Question: Write a C code to read one integer (M) followed by another two integers (i,j). Display the ith through the jth digits of M. For

 Write a C code to read one integer (M) followed by

Write a C code to read one integer (M) followed by another two integers (i,j). Display the ith through the jth digits of M. For example if the input is 123456714 Display digits 1 through for of the integer 1298567 Integer 1298567 So you must display digits 1 through 4, i.e. display 9856 Hint: Read as integer, not string Use a combination of integer division and mod to get the result For example in the above case first you divide the number by 10x, in that case x=1 to get 129856 Then get the number above (129856) mod10y(y=4) you get 9856 Your job is to calculate what should be the value of x and y and their relation to i and j; use a loop that multiply by 10 to get the power of 10 you need

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!