Hi All,
Any array can be defined permanently by adding a "const" intializer to the array.
For example a sample array would look like...
const unsigned int A[5] = {1,2,3,4};
Similar consts can also be used for other data tyoes as well. A good suggestion would bt to go thru YashWant Kanetkars "Let Us C" which goes through these details ina very simple language.
I hope i hve made things simplr.