Concept Flow - How Strings Work Differently Across Languages
Declare string variable
Allocate memory for characters
Store characters in memory
Add null terminator '\0'
Use pointer to access characters
Modify characters via pointer (if mutable)
Read characters until '\0' to print or process
This flow shows how C strings are arrays of characters ending with a null character, accessed via pointers.
