cplusplus
.com
TUTORIALS
REFERENCE
ARTICLES
FORUM
C++
Tutorials
Reference
Articles
Forum
Forum
Beginners
Windows Programming
UNIX/Linux Programming
General C++ Programming
Lounge
Jobs
Forum
General C++ Programming
how to do it?
how to do it?
Oct 17, 2011 at 4:08am UTC
homan007
(4)
Write the logical opposite of this if-statement, applying DeMorgan's Theorem: if (a == 1 || a == 2) .
Last edited on
Oct 17, 2011 at 4:09am UTC
Oct 17, 2011 at 4:11am UTC
kvikram
(5)
if(a !=1 && a!=2)
Topic archived. No new replies allowed.