Relay-Version: version B 2.10 5/3/83; site utzoo.UUCP Path: utzoo!linus!decvax!harpo!eagle!mhuxt!mhuxi!mhuxa!houxm!ihnp4!ixn5c!inuxc!pur-ee!uiucdcs!uiucuxc!hamilton From: hamilton@uiucuxc.UUCP Newsgroups: net.lang.c Subject: Re: Readonly variables - (nf) Message-ID: <2615@uiucdcs.UUCP> Date: Sun, 21-Aug-83 23:38:41 EDT Article-I.D.: uiucdcs.2615 Posted: Sun Aug 21 23:38:41 1983 Date-Received: Tue, 23-Aug-83 23:25:30 EDT Lines: 8 #R:decvax:-16900:uiucuxc:21000004:000:115 uiucuxc!hamilton Aug 21 17:22:00 1983 if the extra storage for the pointer in: char *foo = "bar"; bothers you, use: char foo[] = { "bar" }; instead...