Hello All,
I have a question.
Do we need to leave a space while assigning a value to a variable or compare a variable with any value? If I have not left a space will it create confusion for the compiler?
For example IF i code as below
IF A^=' '
will the compiler take statement same as
IF A ^= ' ' ? (If A is not equal to blank? )
I have faced a scenario where the compiler some times do understand IF statement if coded it with a leaving a space.
Please help