cplusplus
.com
TUTORIALS
REFERENCE
ARTICLES
FORUM
C++
Tutorials
Reference
Articles
Forum
Forum
Beginners
Windows Programming
UNIX/Linux Programming
General C++ Programming
Lounge
Jobs
Forum
Beginners
disable a variable?
disable a variable?
Feb 3, 2010 at 9:14am UTC
ppolcz
(3)
Hello all!
How can I disable a variable, or change it's type;
eg:
//...
int variable
//using it
//disable it
char variable
//using it as a charecter
If you can help, thanks in advence!
Feb 3, 2010 at 11:08am UTC
Bazzy
(6281)
scope:
1
2
3
4
5
6
7
8
//...
{
int
variable
//using it
}
//disable it
char
variable
//using it as a charecter
Topic archived. No new replies allowed.