<?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-program Archives - onlinetutorialspoint</title>
	<atom:link href="https://onlinetutorialspoint.com/category/c-program/feed/" rel="self" type="application/rss+xml" />
	<link>https://onlinetutorialspoint.com/category/c-program/</link>
	<description>OnlineTutorialsPoint</description>
	<lastBuildDate>Tue, 04 Jan 2022 17:13:04 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.8.2</generator>

<image>
	<url>https://onlinetutorialspoint.com/wp-content/uploads/2016/01/cropped-apple-icon-152x152-32x32.png</url>
	<title>c-program Archives - onlinetutorialspoint</title>
	<link>https://onlinetutorialspoint.com/category/c-program/</link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title>C File Operations &#8211;  getc() &#8211; puts() &#8211; fscanf() &#8211; fprintf()</title>
		<link>https://onlinetutorialspoint.com/c-program/c-file-operations-getc-puts-fscanf-and-fprintf/</link>
					<comments>https://onlinetutorialspoint.com/c-program/c-file-operations-getc-puts-fscanf-and-fprintf/#respond</comments>
		
		<dc:creator><![CDATA[Hemanth Krishna Vineel Ramayanam]]></dc:creator>
		<pubDate>Sat, 08 May 2021 05:22:07 +0000</pubDate>
				<category><![CDATA[c-program]]></category>
		<category><![CDATA[c language]]></category>
		<category><![CDATA[c programming]]></category>
		<category><![CDATA[file handling in c]]></category>
		<category><![CDATA[File operations in C]]></category>
		<guid isPermaLink="false">https://www.onlinetutorialspoint.com/?p=11089</guid>

					<description><![CDATA[<p>In this tutorial, we are going to learn about C file operations. C File Operations: The functions getc() and fgetc() are used to read a character from the file which is opened for reading purpose. Both the functions have the same syntax and their work is also similar. Read and Write characters using getc() and putc(): The general syntax of getc() is:</p>
<p>The post <a href="https://onlinetutorialspoint.com/c-program/c-file-operations-getc-puts-fscanf-and-fprintf/">C File Operations &#8211;  getc() &#8211; puts() &#8211; fscanf() &#8211; fprintf()</a> appeared first on <a href="https://onlinetutorialspoint.com">onlinetutorialspoint</a>.</p>
]]></description>
		
					<wfw:commentRss>https://onlinetutorialspoint.com/c-program/c-file-operations-getc-puts-fscanf-and-fprintf/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>File Handling in C</title>
		<link>https://onlinetutorialspoint.com/c-program/file-handling-in-c/</link>
					<comments>https://onlinetutorialspoint.com/c-program/file-handling-in-c/#respond</comments>
		
		<dc:creator><![CDATA[Hemanth Krishna Vineel Ramayanam]]></dc:creator>
		<pubDate>Fri, 07 May 2021 07:06:21 +0000</pubDate>
				<category><![CDATA[c-program]]></category>
		<category><![CDATA[c language]]></category>
		<category><![CDATA[c programmig]]></category>
		<category><![CDATA[file hadling]]></category>
		<category><![CDATA[files in c]]></category>
		<guid isPermaLink="false">https://www.onlinetutorialspoint.com/?p=11081</guid>

					<description><![CDATA[<p>In this tutorial, we are going to learn about reading and writing files in C. File Handling in C: The English dictionary term file refers to a folder or a box used for storing loose papers together (mostly in order) for easy reference. However, in computer terminology, a file is a collection of related data stored as a</p>
<p>The post <a href="https://onlinetutorialspoint.com/c-program/file-handling-in-c/">File Handling in C</a> appeared first on <a href="https://onlinetutorialspoint.com">onlinetutorialspoint</a>.</p>
]]></description>
		
					<wfw:commentRss>https://onlinetutorialspoint.com/c-program/file-handling-in-c/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Understanding Switch Case in C</title>
		<link>https://onlinetutorialspoint.com/c-program/understanding-switch-case-in-c/</link>
					<comments>https://onlinetutorialspoint.com/c-program/understanding-switch-case-in-c/#respond</comments>
		
		<dc:creator><![CDATA[Hemanth Krishna Vineel Ramayanam]]></dc:creator>
		<pubDate>Thu, 06 May 2021 06:02:37 +0000</pubDate>
				<category><![CDATA[c-program]]></category>
		<category><![CDATA[c language]]></category>
		<category><![CDATA[c programming]]></category>
		<category><![CDATA[if-else-if statement]]></category>
		<category><![CDATA[switch-case statement]]></category>
		<guid isPermaLink="false">https://www.onlinetutorialspoint.com/?p=10714</guid>

					<description><![CDATA[<p>In this article, we are going to understand the switch-case construct in C Language. Switch Case in C The switch-case construct is an alternative to the if-else-if construct. Below code shows the general format of a switch-case construct: switch (expression) { case constant_1 : statement_1; break; case constant_2 : statement_2; statement_3; break; ... ... default</p>
<p>The post <a href="https://onlinetutorialspoint.com/c-program/understanding-switch-case-in-c/">Understanding Switch Case in C</a> appeared first on <a href="https://onlinetutorialspoint.com">onlinetutorialspoint</a>.</p>
]]></description>
		
					<wfw:commentRss>https://onlinetutorialspoint.com/c-program/understanding-switch-case-in-c/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>C Flow Control Statements &#8211; if, if-else, nested if-else, if-else-if</title>
		<link>https://onlinetutorialspoint.com/c-program/c-flow-control-statements-if-if-else-nested-if-else-if-else-if/</link>
					<comments>https://onlinetutorialspoint.com/c-program/c-flow-control-statements-if-if-else-nested-if-else-if-else-if/#respond</comments>
		
		<dc:creator><![CDATA[Hemanth Krishna Vineel Ramayanam]]></dc:creator>
		<pubDate>Wed, 05 May 2021 10:57:14 +0000</pubDate>
				<category><![CDATA[c-program]]></category>
		<category><![CDATA[c language]]></category>
		<category><![CDATA[c programming]]></category>
		<category><![CDATA[control statement]]></category>
		<category><![CDATA[if block]]></category>
		<category><![CDATA[if-else block]]></category>
		<category><![CDATA[nestedif-else block]]></category>
		<guid isPermaLink="false">https://www.onlinetutorialspoint.com/?p=10496</guid>

					<description><![CDATA[<p>In this article, we are going to understand the Flow Control Statements in C Language. Any valid combination of constants, variables, and operators constitutes an expression. Some of the examples are: x + y x++ x + (y + z) When an expression is followed by a semicolon (;) it becomes a simple statement. Below are a</p>
<p>The post <a href="https://onlinetutorialspoint.com/c-program/c-flow-control-statements-if-if-else-nested-if-else-if-else-if/">C Flow Control Statements &#8211; if, if-else, nested if-else, if-else-if</a> appeared first on <a href="https://onlinetutorialspoint.com">onlinetutorialspoint</a>.</p>
]]></description>
		
					<wfw:commentRss>https://onlinetutorialspoint.com/c-program/c-flow-control-statements-if-if-else-nested-if-else-if-else-if/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>C &#8211; How to work with Comma and sizeof Operators</title>
		<link>https://onlinetutorialspoint.com/c-program/c-how-to-work-with-comma-and-sizeof-operators/</link>
					<comments>https://onlinetutorialspoint.com/c-program/c-how-to-work-with-comma-and-sizeof-operators/#respond</comments>
		
		<dc:creator><![CDATA[chandrashekhar]]></dc:creator>
		<pubDate>Wed, 05 May 2021 04:56:43 +0000</pubDate>
				<category><![CDATA[c-program]]></category>
		<category><![CDATA[operators]]></category>
		<guid isPermaLink="false">https://www.onlinetutorialspoint.com/?p=11172</guid>

					<description><![CDATA[<p>In this tutorial, we are going to learn about the comma and sizeof operators in C. Comma operator: In C, there are two special operators: the comma (,) operator and the sizeof operator. The Comma(,) operator is used to declare multiple expressions in a single statement. Comma operator acts as a separator between multiple expressions, in declaring multiple variables and in function call parameters.</p>
<p>The post <a href="https://onlinetutorialspoint.com/c-program/c-how-to-work-with-comma-and-sizeof-operators/">C &#8211; How to work with Comma and sizeof Operators</a> appeared first on <a href="https://onlinetutorialspoint.com">onlinetutorialspoint</a>.</p>
]]></description>
		
					<wfw:commentRss>https://onlinetutorialspoint.com/c-program/c-how-to-work-with-comma-and-sizeof-operators/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>C &#8211; Operator Precedence and Associativity</title>
		<link>https://onlinetutorialspoint.com/c-program/c-operator-precedence-and-associativity/</link>
					<comments>https://onlinetutorialspoint.com/c-program/c-operator-precedence-and-associativity/#respond</comments>
		
		<dc:creator><![CDATA[Hemanth Krishna Vineel Ramayanam]]></dc:creator>
		<pubDate>Tue, 04 May 2021 08:56:30 +0000</pubDate>
				<category><![CDATA[c-program]]></category>
		<category><![CDATA[c language]]></category>
		<category><![CDATA[c programming]]></category>
		<category><![CDATA[comma operator]]></category>
		<category><![CDATA[operator precedence]]></category>
		<category><![CDATA[sizeof operator]]></category>
		<guid isPermaLink="false">https://www.onlinetutorialspoint.com/?p=10477</guid>

					<description><![CDATA[<p>In this tutorial, we are going to learn about the operator precedence, and associativity. Operator Precedence &amp; Associativity: When several operators appear in one expression, evaluation takes place according to certain predefined hierarchical rules. These rules specify the order of evaluation (also called precedence) which determines the priority of operators. The operator with higher precedence is evaluated before others with lesser</p>
<p>The post <a href="https://onlinetutorialspoint.com/c-program/c-operator-precedence-and-associativity/">C &#8211; Operator Precedence and Associativity</a> appeared first on <a href="https://onlinetutorialspoint.com">onlinetutorialspoint</a>.</p>
]]></description>
		
					<wfw:commentRss>https://onlinetutorialspoint.com/c-program/c-operator-precedence-and-associativity/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>C Structures &#8211; Access the members of a Struct</title>
		<link>https://onlinetutorialspoint.com/c-program/c-structures-access-the-members-of-a-struct/</link>
					<comments>https://onlinetutorialspoint.com/c-program/c-structures-access-the-members-of-a-struct/#comments</comments>
		
		<dc:creator><![CDATA[Hemanth Krishna Vineel Ramayanam]]></dc:creator>
		<pubDate>Wed, 28 Apr 2021 08:05:09 +0000</pubDate>
				<category><![CDATA[c-program]]></category>
		<category><![CDATA[c language]]></category>
		<category><![CDATA[c programming]]></category>
		<category><![CDATA[nested structures]]></category>
		<category><![CDATA[structures in c]]></category>
		<guid isPermaLink="false">https://www.onlinetutorialspoint.com/?p=11049</guid>

					<description><![CDATA[<p>In this tutorial, we are going to learn about accessing members of the structure. Access the members of a Struct with an arrow (-&gt;) operator: A pointer pointing to a structure is known as a structure pointer. If a pointer to the structure variable is declared, then arrow (-&gt;) notation is used to access the members of the structure. Remember that on</p>
<p>The post <a href="https://onlinetutorialspoint.com/c-program/c-structures-access-the-members-of-a-struct/">C Structures &#8211; Access the members of a Struct</a> appeared first on <a href="https://onlinetutorialspoint.com">onlinetutorialspoint</a>.</p>
]]></description>
		
					<wfw:commentRss>https://onlinetutorialspoint.com/c-program/c-structures-access-the-members-of-a-struct/feed/</wfw:commentRss>
			<slash:comments>1</slash:comments>
		
		
			</item>
		<item>
		<title>C Derived types Structures &#8211; Defining a Struct</title>
		<link>https://onlinetutorialspoint.com/c-program/c-derived-types-structures-defining-a-struct/</link>
					<comments>https://onlinetutorialspoint.com/c-program/c-derived-types-structures-defining-a-struct/#respond</comments>
		
		<dc:creator><![CDATA[Hemanth Krishna Vineel Ramayanam]]></dc:creator>
		<pubDate>Tue, 27 Apr 2021 08:15:48 +0000</pubDate>
				<category><![CDATA[c-program]]></category>
		<category><![CDATA[C Structures]]></category>
		<guid isPermaLink="false">https://www.onlinetutorialspoint.com/?p=11011</guid>

					<description><![CDATA[<p>In this tutorial, we are going to learn about the basics of structures, their declarations, and their definitions. Struct in C: A Structure is a derived data type to organize a group of related data items of different data types referring to a single entity. i.e., a single variable capable of holding data items of different data types. The data items</p>
<p>The post <a href="https://onlinetutorialspoint.com/c-program/c-derived-types-structures-defining-a-struct/">C Derived types Structures &#8211; Defining a Struct</a> appeared first on <a href="https://onlinetutorialspoint.com">onlinetutorialspoint</a>.</p>
]]></description>
		
					<wfw:commentRss>https://onlinetutorialspoint.com/c-program/c-derived-types-structures-defining-a-struct/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>How to work with Union in C</title>
		<link>https://onlinetutorialspoint.com/c-program/how-to-work-with-union-in-c/</link>
					<comments>https://onlinetutorialspoint.com/c-program/how-to-work-with-union-in-c/#respond</comments>
		
		<dc:creator><![CDATA[Hemanth Krishna Vineel Ramayanam]]></dc:creator>
		<pubDate>Tue, 27 Apr 2021 06:03:28 +0000</pubDate>
				<category><![CDATA[c-program]]></category>
		<category><![CDATA[arrays in c]]></category>
		<category><![CDATA[c language]]></category>
		<category><![CDATA[c programming]]></category>
		<category><![CDATA[structures in c]]></category>
		<category><![CDATA[unions and structures]]></category>
		<category><![CDATA[unions in c]]></category>
		<guid isPermaLink="false">https://www.onlinetutorialspoint.com/?p=11076</guid>

					<description><![CDATA[<p>In this tutorial, we are going to learn about union and how is it different from a structure. Union in C: A union is also a collection of different data types in C but that allows to store of different data types in the same memory location. User can define a union with many members, but only one member can</p>
<p>The post <a href="https://onlinetutorialspoint.com/c-program/how-to-work-with-union-in-c/">How to work with Union in C</a> appeared first on <a href="https://onlinetutorialspoint.com">onlinetutorialspoint</a>.</p>
]]></description>
		
					<wfw:commentRss>https://onlinetutorialspoint.com/c-program/how-to-work-with-union-in-c/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>C &#8211; Fundamentals of Recursion functions</title>
		<link>https://onlinetutorialspoint.com/c-program/c-fundamentals-of-recursion-functions/</link>
					<comments>https://onlinetutorialspoint.com/c-program/c-fundamentals-of-recursion-functions/#respond</comments>
		
		<dc:creator><![CDATA[Hemanth Krishna Vineel Ramayanam]]></dc:creator>
		<pubDate>Mon, 26 Apr 2021 04:54:56 +0000</pubDate>
				<category><![CDATA[c-program]]></category>
		<category><![CDATA[advantages and disadvantages of recursion]]></category>
		<category><![CDATA[c language]]></category>
		<category><![CDATA[c programming]]></category>
		<category><![CDATA[direct-recursion]]></category>
		<category><![CDATA[indirect recursion]]></category>
		<category><![CDATA[recursion]]></category>
		<guid isPermaLink="false">https://www.onlinetutorialspoint.com/?p=10922</guid>

					<description><![CDATA[<p>In this tutorial, we are going to learn about the fundamentals of recursion functions. In C language it is possible for functions to call themselves. C - Fundamentals of Recursion functions: A function is called recursive if a statement within the body of the function calls the same function. This is also known as a circular definition or self-reference. There is a distinct difference between</p>
<p>The post <a href="https://onlinetutorialspoint.com/c-program/c-fundamentals-of-recursion-functions/">C &#8211; Fundamentals of Recursion functions</a> appeared first on <a href="https://onlinetutorialspoint.com">onlinetutorialspoint</a>.</p>
]]></description>
		
					<wfw:commentRss>https://onlinetutorialspoint.com/c-program/c-fundamentals-of-recursion-functions/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>
