<?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>special characters | Student Projects</title>
	<atom:link href="https://studentprojects.in/tag/special-characters/feed/" rel="self" type="application/rss+xml" />
	<link>https://studentprojects.in</link>
	<description>Microcontroller projects, Circuit Diagrams, Project Ideas</description>
	<lastBuildDate>Tue, 03 Jun 2014 08:36:34 +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 are C Tokens?</title>
		<link>https://studentprojects.in/software-development/c-tutorials/c-faq/what-are-c-tokens/</link>
					<comments>https://studentprojects.in/software-development/c-tutorials/c-faq/what-are-c-tokens/#respond</comments>
		
		<dc:creator><![CDATA[Chitra]]></dc:creator>
		<pubDate>Tue, 03 Jun 2014 08:33:18 +0000</pubDate>
				<category><![CDATA[C Questions & Answers]]></category>
		<category><![CDATA[c program]]></category>
		<category><![CDATA[c programs]]></category>
		<category><![CDATA[variables]]></category>
		<category><![CDATA[c language]]></category>
		<category><![CDATA[operators]]></category>
		<category><![CDATA[keywords]]></category>
		<category><![CDATA[special characters]]></category>
		<category><![CDATA[constants]]></category>
		<guid isPermaLink="false">http://studentprojects.in/?p=5397</guid>

					<description><![CDATA[<p>C programs contains many elements which are identified by the compiler as Tokens. Tokens can be categorized as 1. Keywords2. Variables3. Constants 4. Special characters 5. Operators C Token example program: int main() { int x, y, sum; x = 5, y = 10; sum = x + y; Printf (“Sum = %d \n”, sum);</p>
<p>The post <a href="https://studentprojects.in/software-development/c-tutorials/c-faq/what-are-c-tokens/">What are C Tokens?</a> first appeared on <a href="https://studentprojects.in">Student Projects</a>.</p>]]></description>
										<content:encoded><![CDATA[<p>C programs contains many elements which are identified by the compiler as Tokens. <br />Tokens can be categorized as <br />1. Keywords<br />2. Variables<br />3. Constants <br />4. Special characters <br />5. Operators</p>
<p>C Token example program:</p>
<pre lang="c" escaped="true">
int main()
{
 int x, y, sum;
 x = 5, y = 10;
 sum = x + y;
 Printf (“Sum = %d \n”, sum);
}</pre>
<p>From above program C Tokens can be categorized as follows,<br />main &#8211; identifier, which is usually used by linker as the entry point of the regular program<br />{,}, (,) – delimiter<br />int – keyword<br />x, y, sum – Variables<br />+, = &#8211; Operators<br />main, {, }, (, ), int, x, y, sum – tokens</p><p>The post <a href="https://studentprojects.in/software-development/c-tutorials/c-faq/what-are-c-tokens/">What are C Tokens?</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/what-are-c-tokens/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>
