Need help to understand this statement
Hi All,
First of all sorry to abuse this forum with a unix question. I could not think of any better section than this one.
I need to understand what the condition in the below statement is checking for
IF mtime>1 THEN
...
ENDIF
The context here is that the above condition is being checked against a process point which collects real-time plant process data in every 10 sec interval.
Thanks.
Re: Need help to understand this statement
It's checking if mtime variable has value greater then 1 or not, if yes then it enters the code written on second line, if not, nothing.
Re: Need help to understand this statement
You couldn't think of a better forum than this one??? That's not even C++, let alone Visual C++.