R>std::vector<int> myfunc(int *b) R>{ R> std::vector<int> a; R> a.resize(200); R> for (int i=0;i<200;i++) R> a[i]=b[i]; R> return a; R>} R>