<?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>c opertors | Student Projects</title>
	<atom:link href="https://studentprojects.in/tag/c-opertors/feed/" rel="self" type="application/rss+xml" />
	<link>https://studentprojects.in</link>
	<description>Microcontroller projects, Circuit Diagrams, Project Ideas</description>
	<lastBuildDate>Tue, 07 Feb 2012 08:43:06 +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>What is the use of sizeof() operator in C?</title>
		<link>https://studentprojects.in/software-development/c-tutorials/c-faq/sizeof-operator/</link>
					<comments>https://studentprojects.in/software-development/c-tutorials/c-faq/sizeof-operator/#respond</comments>
		
		<dc:creator><![CDATA[Chitra]]></dc:creator>
		<pubDate>Tue, 07 Feb 2012 08:41:28 +0000</pubDate>
				<category><![CDATA[C Questions & Answers]]></category>
		<category><![CDATA[sizeof in c]]></category>
		<category><![CDATA[sizeof]]></category>
		<category><![CDATA[size of]]></category>
		<category><![CDATA[sizeof operator]]></category>
		<category><![CDATA[c opertors]]></category>
		<category><![CDATA[operators in c]]></category>
		<guid isPermaLink="false">http://studentprojects.in/?p=2653</guid>

					<description><![CDATA[<p>The sizeof operator returns the size in bytes of its operand. Operand may be a variable or data type.</p>
<p>The post <a href="https://studentprojects.in/software-development/c-tutorials/c-faq/sizeof-operator/">What is the use of sizeof() operator in C?</a> first appeared on <a href="https://studentprojects.in">Student Projects</a>.</p>]]></description>
										<content:encoded><![CDATA[<p>The sizeof operator returns the size in bytes of its operand. Operand may be a variable or data type.</p>
<p>Here are few examples,</p>
<p>Example 1:</p>
<pre lang="c" escaped="true">
main()
 {
  char c;
 
  printf("%d,%d\n", sizeof c, sizeof(int)); /* returns 1, 4*/
 }
</pre>
<p>Example 2:</p>
<pre lang="c" escaped="true">
(main)
 {
	 struct 
	 {
	   int a;
	   int b;
	 }s;
	
	printf ("% d \ n", sizeof (s)); /* returns 8*/
	}
</pre>
<p>Example 3:</p>
<pre lang="c" escaped="true">
main()
 {
  short array [] = {1, 2, 3, 4, 5};

  short la = sizeof (array) / * returns 10 * /
 }
 </pre><p>The post <a href="https://studentprojects.in/software-development/c-tutorials/c-faq/sizeof-operator/">What is the use of sizeof() operator in C?</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-faq/sizeof-operator/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>
