interactive-tutorials
interactive-tutorials copied to clipboard
learn-c: Correct usage definition of static variables
Perfect change, everything correct.
The pull request is broadly correct - you cannot access a static c variable from anywhere in the file. It just gets retained in memory but you can't access it outside of its original scope.