I'm passing an mathematical equation as a string from visual basic to a C function the contents of the LPCSTR would look like
SI0=(SI1 + SI2) * SI3 / SI4;
Where SI1,SI2,SI3, and SI4 are variables that exist in the function. How do I convert the string into an executable line of code.
SI0=(SI1 + SI2) * SI3 / SI4;
Where SI1,SI2,SI3, and SI4 are variables that exist in the function. How do I convert the string into an executable line of code.