Tagged Questions
0
votes
2answers
82 views
How to evaluate if a code is correct against a submitted solution
I´m searching information about how to compare two codes and decide if the code submitted by someone is correct or not (based on a solution code defined before).
I could compare the output but many ...
9
votes
7answers
3k views
c expression Evaluator
Okay lets say I have a string such as this in a text file:
((( var1 AND var2 AND var3) OR var4) AND ((var5 OR var6) AND var7))
after parsing this into the c program and the vars are handled and set ...
11
votes
6answers
4k views
What is easiest way to calculate an infix expression using C language?
Suppose the user inputs an infix expression as a string?
What could be the easiest ( By easiest I mean the shortest) way to evaluate the result of that expression using C language?
Probable ways are ...