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
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 inout is 1234567 14 Display digits 1 through for of the integer 1298567 Integer 1 2 9 8 5 6 7 Digit number 6 5 4 3 2 1 0 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 10%, in that case x=1 to get 129856 Then get the number above (129856) mod 10 (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
3.34 Rating (151 Votes )
There are 3 Steps involved in it
Answer the code is as follow include int main int M i j Read input printfEnter an integer M ... View full answer
Get step-by-step solutions from verified subject matter experts
