system() takes a const char * variable, not a std::string variable ...
you can use the c_str() member function to get a const char * ...
Code:
system(systemcall.c_str());
(and make sure you put a space after START)