From: "Mike Smith" Newsgroups: comp.lang.c++,comp.os.msdos.djgpp Subject: Re: Making C++ little easier to beginners... Date: Fri, 19 Oct 2001 13:20:51 -0400 Organization: Posted via Supernews, http://www.supernews.com Message-ID: References: <9qmkrh$581$1 AT tron DOT sci DOT fi> <9qmlmq$lou$1 AT News DOT Dal DOT Ca> <9qnuii$kn8$1 AT tron DOT sci DOT fi> X-Priority: 3 X-MSMail-Priority: Normal X-Newsreader: Microsoft Outlook Express 5.50.4522.1200 X-MIMEOLE: Produced By Microsoft MimeOLE V5.50.4522.1200 X-Complaints-To: newsabuse AT supernews DOT com Lines: 18 To: djgpp AT delorie DOT com DJ-Gateway: from newsgroup comp.os.msdos.djgpp Reply-To: djgpp AT delorie DOT com "Traveler" wrote in message news:9qnuii$kn8$1 AT tron DOT sci DOT fi... > There are *huge* differences between logical and bitwise > operators. Please read a good C++ book to understand the differences. Please read a good Boolean algebra book to see that there really is no difference between "logical" AND/OR and "bit" AND/OR. Please read a good C++ textbook to see there *is* a difference. (5 | 6) != (5 || 6) -- Mike Smith