<?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 interview questions | Student Projects</title>
	<atom:link href="https://studentprojects.in/tag/c-interview-questions/feed/" rel="self" type="application/rss+xml" />
	<link>https://studentprojects.in</link>
	<description>Microcontroller projects, Circuit Diagrams, Project Ideas</description>
	<lastBuildDate>Fri, 02 Sep 2011 05:02:16 +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>1. Predict the output or error(s) of the following c code</title>
		<link>https://studentprojects.in/software-development/c-tutorials/c-output/1predict-output-errors-code/</link>
					<comments>https://studentprojects.in/software-development/c-tutorials/c-output/1predict-output-errors-code/#comments</comments>
		
		<dc:creator><![CDATA[Peter Vegas]]></dc:creator>
		<pubDate>Thu, 01 Sep 2011 12:41:48 +0000</pubDate>
				<category><![CDATA[C - Predict the Output]]></category>
		<category><![CDATA[c interview questions]]></category>
		<guid isPermaLink="false">http://studentprojects.in/?p=1812</guid>

					<description><![CDATA[<pre lang="c" escaped="true" line="1">
void main()
{
	int  const * p=5;
	printf("%d",++(*p));
}
</pre>
<p>The post <a href="https://studentprojects.in/software-development/c-tutorials/c-output/1predict-output-errors-code/">1. Predict the output or error(s) of the following c code</a> first appeared on <a href="https://studentprojects.in">Student Projects</a>.</p>]]></description>
										<content:encoded><![CDATA[<pre lang="c" escaped="true" line="1">
void main()
{
	int  const * p=5;
	printf("%d",++(*p));
}
</pre>
<p><a href="javascript:;" onmousedown="if(document.getElementById('mydiv').style.display == 'none'){ document.getElementById('mydiv').style.display = 'block'; }else{ document.getElementById('mydiv').style.display = 'none'; }"><strong>Click here to view the answer</strong></a></p>
<div id="mydiv" style="display:none">
<p><strong>Compiler error: </strong>Cannot modify a constant value. </p>
<p><strong>Explanation: </strong><br />
p is a pointer to a &#8220;constant integer&#8221;. But we tried to change the value of the &#8220;constant integer&#8221;.
</div><p>The post <a href="https://studentprojects.in/software-development/c-tutorials/c-output/1predict-output-errors-code/">1. Predict the output or error(s) of the following c code</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-output/1predict-output-errors-code/feed/</wfw:commentRss>
			<slash:comments>1</slash:comments>
		
		
			</item>
	</channel>
</rss>
