Concept Flow - Implicitly unwrapped optionals
Declare IUO variable
Assign value or nil
Use variable
If value present
Yes→Use value directly
No
Runtime crash if nil used
This flow shows how an implicitly unwrapped optional (IUO) is declared, assigned, and used. If it has a value, it is used directly without unwrapping. If nil is used, it causes a runtime crash.