<?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 tutorial | Student Projects</title>
	<atom:link href="https://studentprojects.in/tag/c-tutorial/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:27:47 +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>Comments in C language</title>
		<link>https://studentprojects.in/software-development/c-tutorials/c-tutorials-c-tutorials/comments-language/</link>
					<comments>https://studentprojects.in/software-development/c-tutorials/c-tutorials-c-tutorials/comments-language/#respond</comments>
		
		<dc:creator><![CDATA[Chitra]]></dc:creator>
		<pubDate>Mon, 12 Sep 2011 17:16:47 +0000</pubDate>
				<category><![CDATA[C Tutorials]]></category>
		<category><![CDATA[c comments]]></category>
		<category><![CDATA[comments in c]]></category>
		<category><![CDATA[line comment]]></category>
		<category><![CDATA[block comment]]></category>
		<category><![CDATA[c comment]]></category>
		<category><![CDATA[c tutorial]]></category>
		<guid isPermaLink="false">http://studentprojects.in/?p=2168</guid>

					<description><![CDATA[<p>Comments are merely program documentation which helps the reader to understand the code. The compiler ignores these comments when it translates the program into executable code. C language uses two different formats of comment 1. Block comment 2. Line comment 1. Block comment: A block comment is used when the comment will span several lines.</p>
<p>The post <a href="https://studentprojects.in/software-development/c-tutorials/c-tutorials-c-tutorials/comments-language/">Comments in C language</a> first appeared on <a href="https://studentprojects.in">Student Projects</a>.</p>]]></description>
										<content:encoded><![CDATA[<p>Comments are merely program documentation which helps the reader to understand the code.<br />
The compiler ignores these comments when it translates the program into executable code.<br />
C language uses two different formats of comment<br />
<strong>1.	Block comment<br />
2.	Line comment</strong></p>
<p><strong>1. Block comment: </strong>A block comment is used when the comment will span several lines.<br />
<strong>Example:</strong></p>
<pre lang="c" escaped="true"> /*This is a block comment
                    that covers two lines*/</pre>
<p><strong><strong>2. Line comment:</strong></strong> The line comment uses two slashes (//).Programmers generally use this format for short comments.<br />
<strong>Example:</strong> </p>
<pre lang="c" escaped="true">//This is a single line comment</pre>
<p>Example program: </p>
<pre lang="c" escaped="true" line="1">
/*This is a Greeting program, which prints ‘Hello world’. 
This program demonstrates some of the components of a simple c program*/ 
#include “stdio.h”
#include “conio.h”
void main()
{
printf(“Hello World”);  //This statement prints Hello World
getch();
}//main()
</pre><p>The post <a href="https://studentprojects.in/software-development/c-tutorials/c-tutorials-c-tutorials/comments-language/">Comments in C language</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/comments-language/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>
