Path: utzoo!utgpu!news-server.csri.toronto.edu!cs.utexas.edu!wuarchive!udel!rochester!kodak!uupsi!cmcl2!adm!smoke!gwyn From: gwyn@smoke.brl.mil (Doug Gwyn) Newsgroups: comp.lang.c Subject: Re: Global and Extern Pointers, Arrays Message-ID: <16253@smoke.brl.mil> Date: 24 May 91 20:44:51 GMT References: <3153@cirrusl.UUCP> Organization: U.S. Army Ballistic Research Laboratory, APG, MD. Lines: 9 In article <3153@cirrusl.UUCP> Rahul Dhesi writes: >However, B is not a pointer. It's just treated like one sometimes. It >is a SYMBOLIC NAME FOR AN ADDRESS. I really cannot condone looking at array names like that. The name of an array is just that, the name of an array. Whether or not it has anything to do with an "address" depends on the context. For example, in "sizeof B", the array name B has nothing whatever to do with an address; it represents the entire CONTENT of the array.