C Program to Convert Roman to number

Problem: Write a program to convert roman number into decimal equivalent.

Solution:
  1. Accept a roman number as input.
  2. Define value of each roman digit using switch statement.
  3. Through switch statement access each digit of a roman number and compute the value.
  4. Finally display the the value.

C program to convert roman number to decimal number

\ Get This Program: