m*m
1 楼
look at this global variable initialization problem:
**P
void test()
void main()
{
test()
printf(..., P[1][1]);
// Then P's value is not there, what should I do?
}
test()
{
P is defined a dynamic matrix here and also get the intial value
}
**P
void test()
void main()
{
test()
printf(..., P[1][1]);
// Then P's value is not there, what should I do?
}
test()
{
P is defined a dynamic matrix here and also get the intial value
}