50.0100 What are the major differences between automatic, static, and external
arrays?
Characteristic\Array |
Automatic |
Static |
External |
Defined inside function? |
YES |
YES |
NO |
Local to function ? |
YES |
YES |
NO |
Values Lost after Return? |
YES |
NO |
NO |
Initialized when Declared? |
NO |
YES |
YES |