Date: Wed, 04 Sep 1996 17:33:15 +0000 From: "x DOT pons AT cc DOT uab DOT es" Subject: Declaring global arrays in a multisource project To: djgpp AT delorie DOT com Message-id: <01I937U2638O00D67E@cc.uab.es> Organization: Universitat Autonoma de Barcelona MIME-version: 1.0 Content-type: TEXT/PLAIN; CHARSET=US-ASCII Content-transfer-encoding: 7BIT Dear programmers, In a multi-source project I have a global array, declared as: char my_global_array[256]; in one of the modules. Which is the best way of declaring it on the other modules? extern char my_global_array[256]; extern char *my_global_array; extern char my_global_array[]; Thanks, XP