new.cpp

1
2
3
4
5
#include <vector>

float *f = new float [10];

std::vector<float> v(10);
Back to week06