Email: Password: Remember Me | Create Account (Free)

Back to Subject List

Old thread has been locked -- no new posts accepted in this thread
???
05/21/10 09:09
Read: times


 
#176106 - = != == in C
Responding to: ???'s previous message
Not sure what compiler you are using, but it is either a C compiler or it is not.

If it is a C compiler then there is a huge difference between = (assign) and == (compare equal).

if (tmp1 = 0) will assign 0 to tmp1 and then check if the tmp1 is zero or not zero. But since you have made the assign, tmp1 will always be zero for the following test - huge difference from if (tmp1 == 0)...

List of 16 messages in thread
TopicAuthorDate
reading two times            01/01/70 00:00      
   RE: "dosent work"            01/01/70 00:00      
   RE: the code is something like this            01/01/70 00:00      
   Also...            01/01/70 00:00      
      RE: you don't say which compiler you are using            01/01/70 00:00      
         thank for the comments!            01/01/70 00:00      
            SBUF            01/01/70 00:00      
            the if(temp='0') lines do work            01/01/70 00:00      
               RE:if            01/01/70 00:00      
                  If that's true, then your so-called "C compiler" is BROKEN!            01/01/70 00:00      
                  comments            01/01/70 00:00      
            SES51 compiler            01/01/70 00:00      
               = != == in C            01/01/70 00:00      
                  RE:again            01/01/70 00:00      
            do yourself a favor            01/01/70 00:00      
               not necessarily            01/01/70 00:00      

Back to Subject List