On Mon, 27 Oct 2003, Mauricio Jancic wrote: > Const char screen[][] = { > {"Hello 1"}, > {"Hello 1"}, > {"Hello 1"}, > {"Hello 1"} > } That declaration is very different from this one: > > I comented a long list of strings (12 > > screens for a 20x4 display) defined like: > > > > const char * str3 = "hello world"; in that the first one declares an array which can be entirely placed in ROM, while the second one declares a pointer in RAM and a string constant which would typically be in ROM. (I am assuming you meant to specify sizes inside the braces on "screen".) -- John W. Temples, III -- http://www.piclist.com#nomail Going offline? Don't AutoReply us! email listserv@mitvma.mit.edu with SET PICList DIGEST in the body