I have two (2) questions for any C++ gurus out there:
first, I have just gotten Microsoft Visual C++.net 2003, and can't install it. I'll run CD1, and then click "Prerequisites" to install the prerequisites, and it'll say "Setup has detected another program requires the system to reboot. Setup must be launched again after the system reboots" or something like that. Then it'll restart, of course, and then I have to start all over again. In a never ending cycle! I've tried contacting Microsoft but haven't gotten any response, so if anyone is familiar with MSVC++.net 2003, please help me!!!

Also, I was wondering if arrays could work as pointers to structs. Like :

struct test
{
int a;
int b;
int c;
}
int *array[5];
for (int i=o, i<5, i++)
{
test new_test;
array[i]=&new_test;
}







It would make a convient data structure.......


I'm thankful for any help!