H
Han
If I define a variable in a.cpp as a global variable,but I want to use
it in b.cpp. How to do that?
For example
//a.cpp
vector<int> * p
void main()
{
}
//b.cpp How can I use "p" here?
.......
it in b.cpp. How to do that?
For example
//a.cpp
vector<int> * p
void main()
{
}
//b.cpp How can I use "p" here?
.......