Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我一直试图在 mplab c18 中将数组声明为全局数组,但从未取得太大成功。是否有任何可能的方法来访问数组元素,或者我们可以将数组声明为全局 /extern 并从其他源文件访问。
您可以在一个文件中声明数组
char chMyArray[50];
然后在其他文件中,您可以通过
extern char chMyArray[];
重要的是,在执行 extern 时,不要在数组中放置多少个空格。使用 [] 很好。