Answered step by step
Verified Expert Solution
Question
1 Approved Answer
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 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
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started