Hi,
I have the following code and i need to direct its 1154 outputes to a vector of strings as i need to use this vector later on?
any idea how to do it?
thanks
hash mobtadi
#include <iostream>
#include<iomanip>
#include <string>
#include <sstream>
using std::string;
using namespace std;
Thanks Duoas,
I have done almost similar thing, but it doesnt like it and says
"1>d:\main data folder\drosophila_project\myod-for-georgy\myod\myod\common-binding-sites.cpp(24) : error C2039: 'push_back' : is not a member of 'std::basic_ostringstream<_Elem,_Traits,_Alloc>'"
#include <iostream>
#include<iomanip>
#include <string>
#include <sstream>
#include <vector>
using std::string;
using std::ostringstream;
using namespace std;
int main (){
ostringstream outputString;
vector<string> motifs ;
for (int i=0; i< 10; i++){