◄Summary► ◄Description► ◄Notes► ◄Up► ◄Contents► ◄Index► ◄Back► ──────────────────────────────────────────────────────────────────────────── >C 100 1FF 300 ;* hexadecimal radix assumed 39BB:0102 0A 00 39BB:0302 39BB:0108 0A 01 39BB:0308 > The example above compares the block of memory from 100 to 1FF with the block of memory from 300 to 3FF; it indicates that the third and ninth bytes differ in the two areas of memory. Hexadecimal is assumed to be the default radix. >C arr1[0] L 100 arr2[0] > The example above compares the 100 bytes starting at the address of arr1[0] with the 100 bytes starting at the address of arr2[0]. CodeView produces no output in response; therefore, the first 100 bytes of each array are identical. -♦-