Click here to Skip to main content
15,881,852 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: WaitForInputIdle parent process gets access exception Pin
leon de boer20-Mar-16 22:16
leon de boer20-Mar-16 22:16 
GeneralRe: WaitForInputIdle parent process gets access exception Pin
ForNow21-Mar-16 2:56
ForNow21-Mar-16 2:56 
GeneralThe Exception was caused by unrelated exception which I fixed WaitForInputHandle Works Thanks for your help Pin
ForNow21-Mar-16 8:35
ForNow21-Mar-16 8:35 
Questionembed WxWidgets in MFC applications? Pin
Member 853403519-Mar-16 4:50
Member 853403519-Mar-16 4:50 
Questionxx Pin
Member 1240241718-Mar-16 12:12
Member 1240241718-Mar-16 12:12 
AnswerRe: Minesweeper Game reversing hack -ASM Pin
Richard MacCutchan18-Mar-16 23:04
mveRichard MacCutchan18-Mar-16 23:04 
QuestionHow to Mix MFC Controls and OpenGL? Pin
Member 853403517-Mar-16 23:33
Member 853403517-Mar-16 23:33 
QuestionHow to perform Expression Evaluation Pin
Member 1239950317-Mar-16 8:32
Member 1239950317-Mar-16 8:32 
C#
Write a simple expression evaluator that takes a string like the following as input: 1+2*(3+4).
-Only integers need to be supported
-The following operators should be supported: +, -, *.
-Expressions within parenthesis should be evaluated first.
-Then the resulting expressions should be evaluated from left to right (no operator precedence)
-Example:
4+(4-(2*3)+1)+4 = 7

The code should be written in such a way to support additional operators.

Assume the existence of a function tokenise, which could take a string and return an array of strings, for instance

tokenise(‘1+(2*3)+4’) would return [‘1’,’+’,’(‘,’2’,’*’,’3’,’)’,’+’,’4’]

and the functions isNumber and asNumber which would return a Boolean and integer respectively on a single string input.


modified 17-Mar-16 14:44pm.

QuestionRe: How to perform Expression Evaluation Pin
David Crow17-Mar-16 10:11
David Crow17-Mar-16 10:11 
GeneralRe: How to perform Expression Evaluation Pin
Sascha Lefèvre17-Mar-16 10:52
professionalSascha Lefèvre17-Mar-16 10:52 
AnswerRe: How to perform Expression Evaluation Pin
Chris Losinger17-Mar-16 12:33
professionalChris Losinger17-Mar-16 12:33 
GeneralRe: How to perform Expression Evaluation Pin
Patrice T17-Mar-16 13:11
mvePatrice T17-Mar-16 13:11 
AnswerRe: How to perform Expression Evaluation Pin
Patrice T17-Mar-16 13:09
mvePatrice T17-Mar-16 13:09 
AnswerRe: How to perform Expression Evaluation Pin
Bram van Kampen22-Mar-16 14:16
Bram van Kampen22-Mar-16 14:16 
GeneralRe: How to perform Expression Evaluation Pin
David Crow23-Mar-16 2:28
David Crow23-Mar-16 2:28 
GeneralRe: How to perform Expression Evaluation Pin
Bram van Kampen25-Mar-16 13:11
Bram van Kampen25-Mar-16 13:11 
AnswerRe: How to perform Expression Evaluation Pin
Alan Balkany8-Apr-16 6:53
Alan Balkany8-Apr-16 6:53 
QuestionVagarities of Multiple threads in Windows Pin
Bram van Kampen16-Mar-16 14:36
Bram van Kampen16-Mar-16 14:36 
AnswerRe: Vagarities of Multiple threads in Windows Pin
Jochen Arndt16-Mar-16 21:59
professionalJochen Arndt16-Mar-16 21:59 
AnswerRe: Vagarities of Multiple threads in Windows Pin
Richard MacCutchan16-Mar-16 23:05
mveRichard MacCutchan16-Mar-16 23:05 
GeneralRe: Vagarities of Multiple threads in Windows Pin
Bram van Kampen17-Mar-16 16:30
Bram van Kampen17-Mar-16 16:30 
GeneralRe: Vagarities of Multiple threads in Windows Pin
Richard MacCutchan17-Mar-16 22:51
mveRichard MacCutchan17-Mar-16 22:51 
GeneralRe: Vagarities of Multiple threads in Windows Pin
Bram van Kampen18-Mar-16 17:57
Bram van Kampen18-Mar-16 17:57 
GeneralRe: Vagarities of Multiple threads in Windows Pin
Richard MacCutchan18-Mar-16 22:57
mveRichard MacCutchan18-Mar-16 22:57 
GeneralRe: Vagarities of Multiple threads in Windows Pin
Bram van Kampen19-Mar-16 13:41
Bram van Kampen19-Mar-16 13:41 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.