Question: 56. Write a program in C that takes as input a 4-digit octal number and prints the next 10 octal numbers. Define an octal number
56. Write a program in C that takes as input a 4-digit octal number and prints the next 10 octal numbers. Define an octal number as
int octNum[4];
Use octNum[0] to store the most significant ( i.e leftmost ) octal digit and octNum[3] to store the least significant octal digit. Test your program with interactive input.
Confused specifically as to how to use the array int octNum[4] to store the 4 digit octal number. All help is appreciated
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
