<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	>
<channel>
	<title>Comments on: Operators and, or and xor written in English: is this standard C++?</title>
	<atom:link href="http://www.daniel-lemire.com/blog/archives/2006/09/15/operators-and-or-and-xor-written-in-english-is-this-standard-c/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.daniel-lemire.com/blog/archives/2006/09/15/operators-and-or-and-xor-written-in-english-is-this-standard-c/</link>
	<description>Daniel Lemire's blog is about life in academia, research in Computer Science, wondering how we can reconcile fast databases and algorithms with the informal and asemantic nature of the world around us. It is broadcasted from Montreal (Canada).</description>
	<pubDate>Mon, 01 Dec 2008 21:09:14 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6.5</generator>
		<item>
		<title>By: Duke Aaron D'Attention</title>
		<link>http://www.daniel-lemire.com/blog/archives/2006/09/15/operators-and-or-and-xor-written-in-english-is-this-standard-c/#comment-43215</link>
		<dc:creator>Duke Aaron D'Attention</dc:creator>
		<pubDate>Wed, 01 Nov 2006 11:43:01 +0000</pubDate>
		<guid isPermaLink="false">http://www.daniel-lemire.com/blog/archives/2006/09/15/operators-and-or-and-xor-written-in-english-is-this-standard-c/#comment-43215</guid>
		<description>You should be able to use the following operators (logical then bitwise)...

and = &#38;&#38;, &#38;
or = &#124;&#124;, &#124;
xor = ^

...without having to include "iso646.h". This syntax has always been part of ANSI C right from the outset; it also makes no difference which version of VC++ you are using.

Just ensure that you start a command-line project, as opposed to a Windows-based project, in VC++. This should include the basic headers for you, and won't bloat your code.

Hope this helps.</description>
		<content:encoded><![CDATA[<p>You should be able to use the following operators (logical then bitwise)&#8230;</p>
<p>and = &amp;&amp;, &amp;<br />
or = ||, |<br />
xor = ^</p>
<p>&#8230;without having to include &#8220;iso646.h&#8221;. This syntax has always been part of ANSI C right from the outset; it also makes no difference which version of VC++ you are using.</p>
<p>Just ensure that you start a command-line project, as opposed to a Windows-based project, in VC++. This should include the basic headers for you, and won&#8217;t bloat your code.</p>
<p>Hope this helps.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Anonymous</title>
		<link>http://www.daniel-lemire.com/blog/archives/2006/09/15/operators-and-or-and-xor-written-in-english-is-this-standard-c/#comment-31272</link>
		<dc:creator>Anonymous</dc:creator>
		<pubDate>Tue, 19 Sep 2006 18:54:24 +0000</pubDate>
		<guid isPermaLink="false">http://www.daniel-lemire.com/blog/archives/2006/09/15/operators-and-or-and-xor-written-in-english-is-this-standard-c/#comment-31272</guid>
		<description>These are standard in C++. If Visual C++ doesn't accept them, it's broken. "and" means &#38;&#38;, while &#38; would be "bitand".</description>
		<content:encoded><![CDATA[<p>These are standard in C++. If Visual C++ doesn&#8217;t accept them, it&#8217;s broken. &#8220;and&#8221; means &amp;&amp;, while &amp; would be &#8220;bitand&#8221;.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ignacio</title>
		<link>http://www.daniel-lemire.com/blog/archives/2006/09/15/operators-and-or-and-xor-written-in-english-is-this-standard-c/#comment-30375</link>
		<dc:creator>Ignacio</dc:creator>
		<pubDate>Sun, 17 Sep 2006 02:25:32 +0000</pubDate>
		<guid isPermaLink="false">http://www.daniel-lemire.com/blog/archives/2006/09/15/operators-and-or-and-xor-written-in-english-is-this-standard-c/#comment-30375</guid>
		<description>Even if valid, that's so awful methinks, besides: which operation do you mean? bitwise? logical?</description>
		<content:encoded><![CDATA[<p>Even if valid, that&#8217;s so awful methinks, besides: which operation do you mean? bitwise? logical?</p>
]]></content:encoded>
	</item>
</channel>
</rss>
