<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>intelligent orperator | Student Projects</title>
	<atom:link href="https://studentprojects.in/tag/intelligent-orperator/feed/" rel="self" type="application/rss+xml" />
	<link>https://studentprojects.in</link>
	<description>Microcontroller projects, Circuit Diagrams, Project Ideas</description>
	<lastBuildDate>Sat, 10 Dec 2022 04:25:04 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.1.7</generator>
	<item>
		<title>Operators in c part 2</title>
		<link>https://studentprojects.in/software-development/c-tutorials/c-tutorials-c-tutorials/operators-in-c-part-2/</link>
					<comments>https://studentprojects.in/software-development/c-tutorials/c-tutorials-c-tutorials/operators-in-c-part-2/#respond</comments>
		
		<dc:creator><![CDATA[Shubhajna Rai]]></dc:creator>
		<pubDate>Tue, 25 Oct 2022 07:30:01 +0000</pubDate>
				<category><![CDATA[C Tutorials]]></category>
		<category><![CDATA[operators in c]]></category>
		<category><![CDATA[intelligent orperator]]></category>
		<category><![CDATA[bitwise operator]]></category>
		<guid isPermaLink="false">https://studentprojects.in/?p=9649</guid>

					<description><![CDATA[<p>Intelligent Operators Three logical operators, namely OR, AND, and NOT. Although they are frequently used to compare conditions to determine whether they are satisfied or not, they can be used to compare Boolean values as well.When both operators are true or one, it returns true.When either operator evaluates to true or to one, it returns</p>
<p>The post <a href="https://studentprojects.in/software-development/c-tutorials/c-tutorials-c-tutorials/operators-in-c-part-2/">Operators in c part 2</a> first appeared on <a href="https://studentprojects.in">Student Projects</a>.</p>]]></description>
										<content:encoded><![CDATA[<p>Intelligent Operators</p>



<ul><li>Three logical operators, namely OR, AND, and NOT. Although they are frequently used to compare conditions to determine whether they are satisfied or not, they can be used to compare Boolean values as well.When both operators are true or one, it returns true.When either operator evaluates to true or to one, it returns true.NOT: It is employed to change the operand&#8217;s logical state.</li></ul>


<div class="wp-block-image">
<figure class="aligncenter size-full is-resized"><img decoding="async" src="https://studentprojects.in/wp-content/uploads/2022/10/image.png" alt="" class="wp-image-9651" width="270" height="192" srcset="https://studentprojects.in/wp-content/uploads/2022/10/image.png 396w, https://studentprojects.in/wp-content/uploads/2022/10/image-300x213.png 300w" sizes="(max-width: 270px) 100vw, 270px" /></figure></div>


<pre class="wp-block-code"><code lang="c" class="language-c">#include &lt;stdio.h&gt;
 int main()
{
    int a = 1;
    int b = 0;
    printf("a or b = %d\n", a || b);
}</code></pre>



<p>Output: a or b = 1</p>



<p>The Bitwise Operators</p>



<ul><li>When executing operations at the bit level, a bitwise operator is utilised. They translate our input values into binary format and then process them using the appropriate operator to produce the desired outcomes.</li></ul>


<div class="wp-block-image">
<figure class="aligncenter size-full is-resized"><img decoding="async" loading="lazy" src="https://studentprojects.in/wp-content/uploads/2022/10/image-1.png" alt="" class="wp-image-9652" width="412" height="169" srcset="https://studentprojects.in/wp-content/uploads/2022/10/image-1.png 673w, https://studentprojects.in/wp-content/uploads/2022/10/image-1-300x123.png 300w" sizes="(max-width: 412px) 100vw, 412px" /></figure></div>


<pre class="wp-block-code"><code lang="c" class="language-c">#include &lt;stdio.h&gt;
 int main()
{
    int a = 2; //10
    int b = 3; //11
    printf("a xor b = %d\n", a ^ b);
}</code></pre>



<p>OUTPUT: a xor b = 1</p>



<p>Operators of assignments</p>



<ul><li>Values are assigned using assignment operators. They will be incorporated into nearly every programme we create.</li><li>int a = 0;</li><li>int b = 1;</li><li>Equal to (=) is the assignment operator here. It is assigning 0 to a and 1 to b in the above example.</li></ul>


<div class="wp-block-image">
<figure class="aligncenter size-full is-resized"><img decoding="async" loading="lazy" src="https://studentprojects.in/wp-content/uploads/2022/10/image-2.png" alt="" class="wp-image-9653" width="469" height="281" srcset="https://studentprojects.in/wp-content/uploads/2022/10/image-2.png 760w, https://studentprojects.in/wp-content/uploads/2022/10/image-2-300x180.png 300w" sizes="(max-width: 469px) 100vw, 469px" /></figure></div><p>The post <a href="https://studentprojects.in/software-development/c-tutorials/c-tutorials-c-tutorials/operators-in-c-part-2/">Operators in c part 2</a> first appeared on <a href="https://studentprojects.in">Student Projects</a>.</p>]]></content:encoded>
					
					<wfw:commentRss>https://studentprojects.in/software-development/c-tutorials/c-tutorials-c-tutorials/operators-in-c-part-2/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>
