Hi all,
I need to get the derivative of any expression that the user inputs to my program.
Is there any function of any class in the STL that can do this? Or could someone put me on to the right path with some hints on algorithm for this?
Thanks in advance,
S
I need to refer to, and set an Application variable from my Dialog class. I tried this:
CMyAppApp * pApp = AfxGetApp();
The error says it needs reinterpret_cast, C-style cast or function-style cast. So I tried:
CMyAppApp * pApp = dynamic_cast<CMyAppApp *>(AfxGetApp());
I still get a warning...
I need to refer to, and set an Application variable from my Dialog class. I tried this:
CMyAppApp * pApp = AfxGetApp();
The error says it needs reinterpret_cast, C-style cast or function-style cast. So I tried:
CMyAppApp * pApp = dynamic_cast<CMyAppApp *>(AfxGetApp());
I still get a warning...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.