EXERCISE 4 - Transforming Unicode Text

  1. Review the sample program (ulsex4.c).  Try running it.  Make sure that 
     you understand it.

  2. Modify the sample program to remove all accents from the string (i.e.
     convert accented characters into non-accented ASCII characters).


Building Instructions

  IBM Compiler:  
      icc.exe /Ss ulsex4.c libuls.lib libconv.lib

  GCC 3.3.5:
      gcc.exe ulsex4.c


-------------------------------------------------------------------------------
Sample Output
-------------------------------------------------------------------------------

Input string:  Trois-Rivires is east of Montral.
Output string: Trois-Rivieres is east of Montreal.
 --> 35 input characters processed, 35 placed in output string.
