Problem: Write a program, named p3.c , that behaves in the manner describe in the "usage" message listed below, either printing the usage message when the first command-line argument is -- help ", or accepting input from stdin . You should write appropriate error messages to std out if an error arises, whether an unrecognized command-line argument, a stack underflow or overflow, or unrecognized input.

Naming: Your submitted file is to be named p3.c

Output: Your program's output must be to stdout and of one of the four formats following, assuming argc and argv are the usual parameters for main() and where < program_name> is argv[0] , and rnum is any real number in decimal format.

If argv[1] is " -- help ", display the following.

Usage: < program_name>

"< program_name> --help"
display thi i s usage material.

"< program_name> -rpn"
The program accepts input from standard input as a sequence
of numbers and operators. The numbers (operands, as
integers or floating point numbers) read are push ed on a
stack until needed. When an operator is read, the required
operands are popped from the stack and used to perform the
calcu lation, with the result placed on the stack. Valid
operators are +, -, * and /, are interpreted as addition,
subtraction, multiplication and division, respectively, as
described below. An additional operator is =, which
indicates that the value a t the top of the stack is popped
from the stack and displayed along with the number of
values remaining on the stack, whereupon the program
terminates.

Stack underflows generate an error message and halt the
program, as do a stack overflowss. Unrecognized input
tokens produce error messages and result in program
termination, as do unrecognized command line arguments.
The size of the stack is 10.

Stack operations are performed as indicated here.

+ : push(pop() + pop());
- : temp = pop(); push(pop() – temp;
* : push(pop() * pop());
/ : temp = pop(); push(pop() / temp;
= : pop the stack top and display it as the result
with the number of items remaining on the stack.

The above describes the majority of the behavior of the program you are to write. To reiterate and expand important points:

  • If the first command-line argument is "--help ", subsequent command-line arguments are ignored, the usage message is displayed and the program terminates.
  • If the first command-line argument is " -rpn ", subsequent command line arguments are ignored and the program proceeds with reading from standard input.
  • Invalid/unrecognized command-line arguments produce a suitable error message, display the usage information above, and terminate the program.
  • If an unrecognized token is read from standard input, a suitable error message for the type of error is to be displayed with the usage text and the program terminated.
  • If all inputs are recognized and no errors arise, print the following to stdout.
Result = < result popped from top of stack>.
< number of operands on the stack> values remain on the stack.

For all error conditions, print the required output to stderr.

Remember that any item delimited by angle brackets ("< >") is to be replaced with the appropriate information, without the angle brackets.

Academic Honesty!
It is not our intention to break the school's academic policy. Posted solutions are meant to be used as a reference and should not be submitted as is. We are not held liable for any misuse of the solutions. Please see the frequently asked questions page for further questions and inquiries.
Kindly complete the form. Please provide a valid email address and we will get back to you within 24 hours. Payment is through PayPal, Buy me a Coffee or Cryptocurrency. We are a nonprofit organization however we need funds to keep this organization operating and to be able to complete our research and development projects.