T
treez
Guest
Hello,
Our software engineer tells us that the following two lines are the same in every way. Is this true? Do they both execute the same?
(as you can see , one has "!=" and the other has "=!".
The C compiler is the free one that comes with microchip's MPLAB software.
Our software engineer tells us that the following two lines are the same in every way. Is this true? Do they both execute the same?
(as you can see , one has "!=" and the other has "=!".
The C compiler is the free one that comes with microchip's MPLAB software.
if(eepromWriteCount != BACKUP_1_eepromWriteCount)
if(eepromWriteCount =! BACKUP_1_eepromWriteCount)