Concept Flow - Auto storage class
Start
Declare auto variable
Variable gets automatic storage
Use variable inside block
Block ends
Variable destroyed automatically
End
This flow shows how an auto variable is declared, used inside a block, and then automatically destroyed when the block ends.