I want to compile a batch file into an exe using c++, i can get through parsing the batch file and w
- by Nareshkumar Rao
Ok, here's the thing, I am creating an application in DevC++ that will read in a batch file. then, one by one parsing it using:
system(getline(myfile,line));
After setting everything up, I save the newly created file as "main.cpp".
The problem is, I want to compile it into an exe, from my program, for the end user.
So basically, I'm asking whether I can compile a C++ file from a C++ Exe..