Lets say you declare a variable in one function
int main(){
a = 10;
return 0;
Once you put that variable in another function, would it still be seen as 10, assuming it has not been changed?
int NewFunc(){
std::cout << a;
return 0;
When life gives you tomatoes, you grow carrots. -nobbers12345 |