1. Re: Strings
- Posted by Adam Weeden <SkaMan325 at AOL.COM> Nov 23, 1998
- 623 views
in pascal strings are stored like this say you have the word PASCAL and it starts at memory location 13672 (this is an arbitrary no.) then the map of the memory would like 13672 13673 13674 13675 13676 13677 13678 "P" "A" "S" "C" "A" "L" "\0" the "\0" at the end tells it that the string is over.

