Question: C language. 1. Write a program that asks the user to enter a two-digit number, then prints the following appearance: Enter a two-digit number: 28
C language.
1. Write a program that asks the user to enter a two-digit number, then prints the following appearance:
Enter a two-digit number: 28
The reversal is: 82
Read the number using %d, then break it into two digits. Hint: if n is an integer. then n % 10 is the last digit in n and n / 10 isn n with the last digit removed.
2. Extend the program in programming project 1 to handle three-digit numbers.
3. rewrite the program in programming project 2 so that it prints the reversal of a three-digit number without using arithmetic to split the number into digits. Hint: see the upc. c program of section 4.1.
4. write a program that reads an integer entered by the user and display it in octal (base 8):
enter a. number between 0 and 32767: 1953
in octal, your number is: 03641
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
