Re: [Tutor] Re: Might be a silly question!

2005-02-12 Thread Liam Clarke
I suppose, you could do it like this - gamma = 5, and access with gamma[0]. But, there'd be nothing to stop you reassigning gamma. On Fri, 11 Feb 2005 18:44:18 -, Alan Gauld <[EMAIL PROTECTED]> wrote: > > I have been reading code written before me (mind you it's C++) and > the > > authors

Re: [Tutor] Re: Might be a silly question!

2005-02-11 Thread Alan Gauld
> I have been reading code written before me (mind you it's C++) and the > authors seemed to follow what ever style they wished to that day. And that's C++ style, it has no single standard approach... > that's the nature of the beast. How very true. Alan G.

[Tutor] Re: Might be a silly question!

2005-02-11 Thread Jeffrey Maitland
Thanks that's what I thought. Wasn't 100% sure that is what prompted me to ask the question in here. As for the CAPS thing for constants, I generally try and practice (to the best of my knowledge) proper programming consepts/styles/standards. However I have been reading code written before me