Question: in c please please asap Problem Description In ancient Rome, the following symbols were used for numbers: This roman system is not positional like our
Problem Description In ancient Rome, the following symbols were used for numbers: This roman system is not positional like our numbering system. The symbols have fixed values regardless of where they appear in the number. For example, II is 2 and LXV is 50+10+5=65. However, adding a symbol before another can mean "subtract" if the symbol before is smaller. For example: IV means 4 (subtract 1 from 5) and CM means 900 (subtract 100 from 1000 ). Write a C program that prompts the user to enter a string representing a roman number and prints the equivalent decimal number Note: Assume the maximum size of the string is 100 Exercise 2 - Sum Large Integers Exercise Objectives Recursive string processing Problem Description Write a recursive C function named processString that takes a C-sting as a single argument and prints any character in the string that is NOT a capital letter Note: The use of global variables is not allowed The use of static variable is not allowed The use of functions form string.h is not allowed
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
