EXERCISE 1 - Using UniChar Strings

  1. Review the program (ulsex1.c).  Make sure that you understand it.

  2. Verify that the program builds and and runs successfully.


Building Instructions

  IBM Compiler:  
      icc.exe ulsex1.c libuls.lib

  GCC 3.3.5:
      gcc.exe ulsex1.c


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

Unicode string: "Hello, Warpstock!"
Characters:     17 (plus terminating null)
Total size:     36 bytes

Raw byte values:
| 00 48 | 00 65 | 00 6C | 00 6C | 00 6F | 00 2C | 00 20 | 00 57 | 00 61 | 00 72
| 00 70 | 00 73 | 00 74 | 00 6F | 00 63 | 00 6B | 00 21 | 00 00 |

