C Program to Convert Roman to number
Problem: Write a program to convert roman number into decimal equivalent.
Solution:
Solution:
- Accept a roman number as input.
- Define value of each roman digit using switch statement.
- Through switch statement access each digit of a roman number and compute the value.
- Finally display the the value.