Obataining variable from other source

I have 3 c++ sources in my project, and am wondering how to obtain a globally declared array from another c++ file.
closed account (z05DSL3A)
Read up on the extern keyword.

This extern keyword is used to specify that the variable is declared in a different file. This is mostly used to declare variables of global scope in C++ projects.
Topic archived. No new replies allowed.