Subj : Re: Win98 error To : borland.public.cpp.borlandcpp From : Bob Gonder Date : Fri Mar 12 2004 12:04 pm Thomas Maeder [TeamB] wrote: >Bob Gonder writes: > >> #define nmax 100 > >Why would one even consider doing this? Probably because of my ASM background, I don't like creating variables that should be "immediate" values. And,I usually have sizes global (or at least modular) in scope. And, it just looks too much like BASIC, initializing array sizes by the contents of a variable. I suppose the "const" in front of it makes it all right, but it gives me the willies. .