#include <vector> problemer i dev-cpp
følgende kode compiler godt nok rigtigt men den kommer op med en windows fejl når jeg køre det.. hvad gør jeg galt ?#include <iostream>
#include <vector>
using namespace std;
struct testhest
{
int first;
vector <int> second;
};
void asd(testhest *test);
main()
{
testhest *test;
asd(test);
system("PAUSE");
}
void asd(testhest *test)
{
test->first = 12;
test->second.push_back(5);
test->second.push_back(6);
test->second.push_back(7);
cout << test->first << endl;
cout << test->second[0] << endl;
}
/madman