Concept Flow - String Basics and Memory Representation
Create string object
Allocate memory for characters
Store characters sequentially
Add null terminator or length info
Reference string variable points to memory
Use string in operations (read, slice, concat)
Shows how a string is created in memory, characters stored, and referenced by a variable.