Tagged Questions
7
votes
10answers
9k views
Where are constant variables stored in C?
I wonder where constant variables are stored. In the same memory area as global variables? Or on the stack?
2
votes
4answers
3k views
Objective C defining UIColor constants
I have a iPhone application with a few custom-defined colors for my theme. Since these colors will be fixed for my UI, I would like to define the colors in a class to be included (Constants.h and ...
0
votes
5answers
113 views
How to define large amounts of variables correctly in PHP?
I've got about 30 variables hard-coded into a php script and I need to remove them all and put them into their own places. I'm wondering, should define them as constants, globals, put them into a ...