Was wondering - is it possible to reassign data types in C++, just like in Python?
For example:
int age = 18;
//no longer need this cached in memory...
string age = "I'm a different data type now...";
Was wondering - is it possible to reassign data types in C++, just like in Python?
For example:
int age = 18;
//no longer need this cached in memory...
string age = "I'm a different data type now...";