<?xml version='1.0' encoding='UTF-8'?><?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?><feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:blogger='http://schemas.google.com/blogger/2008' xmlns:georss='http://www.georss.org/georss' xmlns:gd="http://schemas.google.com/g/2005" xmlns:thr='http://purl.org/syndication/thread/1.0'><id>tag:blogger.com,1999:blog-5109055197243893191</id><updated>2019-04-24T20:43:07.715+05:45</updated><category term="c -programming"/><category term="Downloads"/><category term="Tech"/><category term="Tutorials"/><category term="DMA"/><category term="General"/><category term="History"/><title type='text'>Generation Challenge</title><subtitle type='html'>Find all stuffs related to technology.</subtitle><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://www.sparajuli.com.np/feeds/posts/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5109055197243893191/posts/default'/><link rel='alternate' type='text/html' href='http://www.sparajuli.com.np/'/><link rel='hub' href='http://pubsubhubbub.appspot.com/'/><author><name>mlworld</name><uri>http://www.blogger.com/profile/01888181411965090399</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>23</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>25</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-5109055197243893191.post-5817582076239134286</id><published>2018-12-05T23:08:00.002+05:45</published><updated>2018-12-05T23:31:06.514+05:45</updated><title type='text'>City Of Future: Singapore</title><content type='html'>The paradigm has shifted, the world is accelerating, the science fiction of yesterday is rapidly becoming the science fiction of right now. How do we continue to learn when information is moving at the speed of light ? There are places that are ahead of the curve, Singapore is building the tools for tomorrow.&lt;br /&gt;The future of the world lies in its urban environments. More than half the world&#39;s population live in cities and that number is growing. This rapid influx of people creates possibility but it also creates challenges. How can the cities of today grow and thrive to become the places we want to live in tomorrow. Creating sustainable, manageable human spaces in the world&#39;s ever-expanding cities is a challenge facing governments across the globe.&lt;br /&gt;&lt;br /&gt;&lt;style&gt;.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }&lt;/style&gt;&lt;div class=&#39;embed-container&#39;&gt;&lt;iframe allow=&quot;accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture&quot; allowfullscreen=&quot;&quot; frameborder=&quot;0&quot; height=&quot;315&quot; src=&quot;https://www.youtube.com/embed/xi6r3hZe5Tg&quot; width=&quot;560&quot;&gt;&lt;/iframe&gt;&lt;/div&gt;&lt;div style=&quot;text-align: center;&quot;&gt;Video Source: National Geographic&lt;/div&gt;&lt;br /&gt;Singapore is preparing for the future, planning ahead of time. Along with the rapid urbanization and advanced technological advancements, this city is vibrant, safe and also sustainable for the people now and also for the future.  </content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5109055197243893191/posts/default/5817582076239134286'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5109055197243893191/posts/default/5817582076239134286'/><link rel='alternate' type='text/html' href='http://www.sparajuli.com.np/2018/12/city-of-future-singapore.html' title='City Of Future: Singapore'/><author><name>mlworld</name><uri>http://www.blogger.com/profile/01888181411965090399</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://img.youtube.com/vi/xi6r3hZe5Tg/default.jpg" height="72" width="72"/><gd:extendedProperty name="commentSource" value="1"/><gd:extendedProperty name="commentModerationMode" value="FILTERED_POSTMOD"/></entry><entry><id>tag:blogger.com,1999:blog-5109055197243893191.post-3003082563999847435</id><published>2015-08-12T13:39:00.003+05:45</published><updated>2015-08-12T13:42:46.658+05:45</updated><category scheme="http://www.blogger.com/atom/ns#" term="c -programming"/><title type='text'>C Program to solve Tower of Hanoi Problem Using Recursion</title><content type='html'>This C Program uses recursive function to solve tower of hanoi problem.The tower of hanoi is a mathematical puzzle problem.It is also a great example of recursion.&lt;br /&gt;It consists of three rods, and a number of disks of different sizes.While transferring disk from one rod other, larger disk can&#39;t be at the top of smaller disk.&lt;br /&gt;We have to obtain the same stack on the third rod as in the first rod below:&lt;br /&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;a href=&quot;http://3.bp.blogspot.com/-7410IfcYX_4/Vcr7-Ps7eeI/AAAAAAAAAw0/Y5z0T_RF6vc/s1600/towers-of-hanoi.jpg&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img alt=&quot;tower of hanoi&quot; border=&quot;0&quot; height=&quot;240&quot; src=&quot;http://3.bp.blogspot.com/-7410IfcYX_4/Vcr7-Ps7eeI/AAAAAAAAAw0/Y5z0T_RF6vc/s320/towers-of-hanoi.jpg&quot; title=&quot;tower of hanoi&quot; width=&quot;320&quot; /&gt;&lt;/a&gt;&lt;/div&gt;Here is the source code of the C Program for solving towers of hanoi problem.It was successfully compiled and run in Dev C++.&lt;br /&gt;&lt;br /&gt;Source Code:&lt;br /&gt;&lt;div class=&quot;MsoNormal&quot; style=&quot;background: #f5f8fa; border-bottom: 1px solid #5c7b90; border-left: 20px solid #5c7b90; border-right: 1px solid #5c7b90; border-top: 1px solid #5c7b90; color: black; margin: 10px 0 10px 10px; padding: 28px 10px 10px; text-align: justify;&quot;&gt;#include&amp;lt;stdio.h&amp;gt;&lt;br /&gt;void toh(int,char,char,char);&lt;br /&gt;void main()&lt;br /&gt;{&lt;br /&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre;&quot;&gt; &lt;/span&gt;int n;&lt;br /&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre;&quot;&gt; &lt;/span&gt;printf(&quot;Enter no. of disks:\n&quot;);&lt;br /&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre;&quot;&gt; &lt;/span&gt;scanf(&quot;%d&quot;,&amp;amp;n);&lt;br /&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre;&quot;&gt; &lt;/span&gt;printf(&quot;The steps to solve toh are:\n&quot;);&lt;br /&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre;&quot;&gt; &lt;/span&gt;toh(n,&#39;A&#39;,&#39;B&#39;,&#39;C&#39;);&lt;br /&gt;}&lt;br /&gt;void toh(int n,char frompeg,char auxpeg,char topeg)&lt;br /&gt;{&lt;br /&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre;&quot;&gt; &lt;/span&gt;if(n==1)&lt;br /&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre;&quot;&gt; &lt;/span&gt;{&lt;br /&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre;&quot;&gt;  &lt;/span&gt;printf(&quot;Move disk 1 from peg %c to peg %c.&quot;,frompeg,topeg);&lt;br /&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre;&quot;&gt;  &lt;/span&gt;return;&lt;br /&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre;&quot;&gt; &lt;/span&gt;}&lt;br /&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre;&quot;&gt; &lt;/span&gt;toh(n-1,frompeg,topeg,auxpeg);&lt;br /&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre;&quot;&gt; &lt;/span&gt;printf(&quot;\nMove disk %d from peg %c to peg %c.\n&quot;,n,frompeg,topeg);&lt;br /&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre;&quot;&gt; &lt;/span&gt;toh(n-1,auxpeg,frompeg,topeg);&lt;br /&gt;}&lt;br /&gt;//www.sparajuli.com.np&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5109055197243893191/posts/default/3003082563999847435'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5109055197243893191/posts/default/3003082563999847435'/><link rel='alternate' type='text/html' href='http://www.sparajuli.com.np/2015/08/c-program-to-solve-tower-of-hanoi.html' title='C Program to solve Tower of Hanoi Problem Using Recursion'/><author><name>mlworld</name><uri>http://www.blogger.com/profile/01888181411965090399</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://3.bp.blogspot.com/-7410IfcYX_4/Vcr7-Ps7eeI/AAAAAAAAAw0/Y5z0T_RF6vc/s72-c/towers-of-hanoi.jpg" height="72" width="72"/><gd:extendedProperty name="commentSource" value="1"/><gd:extendedProperty name="commentModerationMode" value="FILTERED_POSTMOD"/></entry><entry><id>tag:blogger.com,1999:blog-5109055197243893191.post-2367484498970333715</id><published>2015-08-12T13:13:00.000+05:45</published><updated>2015-08-12T13:23:20.284+05:45</updated><category scheme="http://www.blogger.com/atom/ns#" term="c -programming"/><title type='text'>C Program to convert Infix To Postfix Expression Using Stack</title><content type='html'>This is a &amp;nbsp;short, easy to understand and functional C Program which converts Infix Expression to Postfix Expression.i.e. (a+b)*c/(d-e)+f &amp;nbsp; To &amp;nbsp;ab+cde-/*f+.&lt;br /&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;Source Code:&lt;/div&gt;&lt;div class=&quot;MsoNormal&quot; style=&quot;background: #f5f8fa; border-bottom: 1px solid #5c7b90; border-left: 20px solid #5c7b90; border-right: 1px solid #5c7b90; border-top: 1px solid #5c7b90; color: black; margin: 10px 0 10px 10px; padding: 28px 10px 10px; text-align: justify;&quot;&gt;#include&amp;lt;ctype.h&amp;gt;&lt;br /&gt;#include&amp;lt;stdio.h&amp;gt;&lt;br /&gt;void push(char elem);&lt;br /&gt;int pr(char elem);&lt;br /&gt;char pop();&lt;br /&gt;char infx[50],pofx[50],ch,elem,s[50];&lt;br /&gt;int top=-1; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre;&quot;&gt;    &lt;/span&gt;/* Global declarations */&lt;br /&gt;void main()&lt;br /&gt;{ &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre;&quot;&gt;    &lt;/span&gt;/* Main Program */&lt;br /&gt;&amp;nbsp; &amp;nbsp; int i=0,k=0;&lt;br /&gt;&amp;nbsp; &amp;nbsp; push(&#39;#&#39;);&lt;br /&gt;&amp;nbsp; &amp;nbsp; printf(&quot;\nEnter the Infix Expression: &quot;);&lt;br /&gt;&amp;nbsp; &amp;nbsp; scanf(&quot;%s&quot;,infx);&lt;br /&gt;&amp;nbsp; &amp;nbsp; while( (ch=infx[i++]) != &#39;\0&#39;)&lt;br /&gt;&amp;nbsp; &amp;nbsp; {&lt;br /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; if( ch == &#39;(&#39;)&lt;br /&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre;&quot;&gt;  &lt;/span&gt;push(ch);&lt;br /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; else if(isalnum(ch))&lt;br /&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space: pre;&quot;&gt;   &lt;/span&gt;pofx[k++]=ch;&lt;br /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; else if( ch == &#39;)&#39;)&lt;br /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; {&lt;br /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; while( s[top] != &#39;(&#39;)&lt;br /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; pofx[k++]=pop();&lt;br /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; elem=pop(); /* Remove ( */&lt;br /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; }&lt;br /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; else&lt;br /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; { &amp;nbsp; &amp;nbsp; &amp;nbsp; /* Operator */&lt;br /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; while( pr(s[top]) &amp;gt;= pr(ch) )&lt;br /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; pofx[k++]=pop();&lt;br /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; push(ch);&lt;br /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; }&lt;br /&gt;&amp;nbsp; &amp;nbsp; }&lt;br /&gt;&amp;nbsp; &amp;nbsp; while( s[top] != &#39;#&#39;) &amp;nbsp; &amp;nbsp; /* Pop from stack till empty */&lt;br /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; pofx[k++]=pop();&lt;br /&gt;&amp;nbsp; &amp;nbsp; pofx[k]=&#39;\0&#39;; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;/* Make pofx as valid string */&lt;br /&gt;&amp;nbsp; &amp;nbsp; printf(&quot;\n\nInfix Expression: %s\nPostfix Expression: %s\n&quot;,infx,pofx);&lt;br /&gt;}&lt;br /&gt;void push(char elem)&lt;br /&gt;{ &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; /* Function for PUSH operation */&lt;br /&gt;&amp;nbsp; &amp;nbsp; s[++top]=elem;&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;char pop()&lt;br /&gt;{ &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;/* Function for POP operation */&lt;br /&gt;&amp;nbsp; &amp;nbsp; return(s[top--]);&lt;br /&gt;}&lt;br /&gt;int pr(char elem)&lt;br /&gt;{ &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; /* Function for precedence */&lt;br /&gt;&amp;nbsp; &amp;nbsp; switch(elem)&lt;br /&gt;&amp;nbsp; &amp;nbsp; {&lt;br /&gt;&amp;nbsp; &amp;nbsp; case &#39;#&#39;: return 0;break;&lt;br /&gt;&amp;nbsp; &amp;nbsp; case &#39;(&#39;: return 1;break;&lt;br /&gt;&amp;nbsp; &amp;nbsp; case &#39;+&#39;: return 2;break;&lt;br /&gt;&amp;nbsp; &amp;nbsp; case &#39;-&#39;: return 2;break;&lt;br /&gt;&amp;nbsp; &amp;nbsp; case &#39;*&#39;: return 3;break;&lt;br /&gt;&amp;nbsp; &amp;nbsp; case &#39;/&#39;: return 4;break;&lt;br /&gt;&amp;nbsp; &amp;nbsp; }&lt;br /&gt;}&lt;br /&gt;//www.sparajuli.com.np/&lt;/div&gt;&lt;div&gt;&lt;br /&gt;This program is successfully compiled and run in Dev C++ and working.If you have any query, ask below in comment section.&lt;br /&gt;&lt;br /&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5109055197243893191/posts/default/2367484498970333715'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5109055197243893191/posts/default/2367484498970333715'/><link rel='alternate' type='text/html' href='http://www.sparajuli.com.np/2015/08/c-program-to-convert-infix-to-postfix.html' title='C Program to convert Infix To Postfix Expression Using Stack'/><author><name>mlworld</name><uri>http://www.blogger.com/profile/01888181411965090399</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><gd:extendedProperty name="commentSource" value="1"/><gd:extendedProperty name="commentModerationMode" value="FILTERED_POSTMOD"/></entry><entry><id>tag:blogger.com,1999:blog-5109055197243893191.post-5497005154651055661</id><published>2015-06-24T16:09:00.000+05:45</published><updated>2015-07-27T22:56:20.379+05:45</updated><category scheme="http://www.blogger.com/atom/ns#" term="c -programming"/><category scheme="http://www.blogger.com/atom/ns#" term="DMA"/><title type='text'>(DMA)Dynamic Memory Allocation in C - Explained with examples</title><content type='html'>&lt;div style=&quot;text-align: justify;&quot;&gt;The size of array you have declared initially can be sometimes insufficient and sometimes more than required.Dynamic memory allocation allows us to allocate additional more memory space or to release unwanted space at run time, thus optimizes the use of storage space.&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;br /&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;There are 4 library functions under &quot;&lt;i&gt;stdlib.h&lt;/i&gt;&quot; for dynamic memory allocation:&lt;/div&gt;&lt;div style=&quot;text-align: start;&quot;&gt;&lt;/div&gt;&lt;ol&gt;&lt;li&gt;&lt;span style=&quot;line-height: 107%; text-align: justify;&quot;&gt;&lt;b&gt;malloc();&lt;/b&gt; - Allocates requested size of bytes and returns a pointer to first byte of allocated space.&lt;/span&gt;&lt;/li&gt;&lt;li style=&quot;text-align: justify;&quot;&gt;&lt;span style=&quot;line-height: 107%;&quot;&gt;&lt;b&gt;calloc(); -&amp;nbsp;&lt;/b&gt;Allocates space for an array elements, initializes to zero and then returns a pointer to memory.&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span style=&quot;line-height: 107%; text-align: justify;&quot;&gt;&lt;b&gt;free();&lt;/b&gt; - frees the previously allocated space.&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span style=&quot;line-height: 107%; text-align: justify;&quot;&gt;&lt;b&gt;realloc();&lt;/b&gt; - Change the size of previously allocated space.&lt;/span&gt;&lt;/li&gt;&lt;/ol&gt;&lt;span style=&quot;line-height: 107%; text-align: justify;&quot;&gt;&lt;b&gt;1.malloc();&lt;/b&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;font-weight: normal; line-height: 107%; text-align: justify;&quot;&gt;The name malloc stands for &quot;memory allocation&quot;. The function malloc() reserves a block of memory of specified size and returns a pointer of type void which can be casted into pointer of any form.&lt;/span&gt;&lt;br /&gt;&lt;i style=&quot;line-height: 107%; text-align: justify;&quot;&gt;&lt;b&gt;Syntax of malloc();&lt;/b&gt;&lt;/i&gt;&lt;br /&gt;&lt;i style=&quot;line-height: 107%; text-align: justify;&quot;&gt;&lt;b&gt;&lt;br /&gt;&lt;/b&gt;&lt;/i&gt;&lt;span style=&quot;line-height: 107%; text-align: justify;&quot;&gt;ptr=(cast-type*)malloc(byte-size);&lt;/span&gt;&lt;br /&gt;&lt;div class=&quot;MsoNormal&quot; style=&quot;text-align: justify;&quot;&gt;&lt;span style=&quot;line-height: 107%;&quot;&gt;Here, ptr is pointer of cast-type. The malloc() function returns a pointer to an area of memory with size of byte size. If the space is insufficient, allocation fails and returns NULL pointer.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class=&quot;MsoNormal&quot; style=&quot;text-align: justify;&quot;&gt;&lt;span style=&quot;line-height: 107%;&quot;&gt;&amp;nbsp;For example:&lt;/span&gt;&lt;/div&gt;&lt;div class=&quot;MsoNormal&quot; style=&quot;text-align: justify;&quot;&gt;&lt;span style=&quot;line-height: 107%;&quot;&gt;ptr=(int*)malloc(100*sizeof(int));&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class=&quot;MsoNormal&quot; style=&quot;text-align: justify;&quot;&gt;&lt;span style=&quot;line-height: 107%;&quot;&gt;This statement will allocate either 200 or 400 according to size of int 2 or 4 bytes respectively and the pointer points to the address of first byte of memory.&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;br /&gt;&lt;/div&gt;&lt;div class=&quot;MsoNormal&quot; style=&quot;text-align: justify;&quot;&gt;&lt;span style=&quot;line-height: 107%;&quot;&gt;&lt;b&gt;2.calloc();&lt;/b&gt;&lt;span style=&quot;font-size: 13.5pt;&quot;&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class=&quot;MsoNormal&quot; style=&quot;text-align: justify;&quot;&gt;&lt;span style=&quot;line-height: 107%;&quot;&gt;&lt;b&gt;&lt;br /&gt;&lt;/b&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class=&quot;MsoNormal&quot; style=&quot;text-align: justify;&quot;&gt;&lt;span style=&quot;line-height: 107%;&quot;&gt;The name calloc stands for &quot;contiguous allocation&quot;.&lt;i&gt;The only difference between malloc() and calloc() is that, malloc() allocates single block of memory whereas calloc() allocates multiple blocks of memory each of same size and sets all bytes to zero.&lt;/i&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class=&quot;MsoNormal&quot; style=&quot;text-align: justify;&quot;&gt;&lt;b&gt;&lt;span style=&quot;line-height: 107%;&quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;i style=&quot;line-height: 107%;&quot;&gt;Syntax of calloc();&lt;/i&gt;&lt;/b&gt;&lt;/div&gt;&lt;div class=&quot;MsoNormal&quot; style=&quot;text-align: justify;&quot;&gt;&lt;span style=&quot;line-height: 107%;&quot;&gt;&lt;i&gt;&lt;br /&gt;&lt;/i&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class=&quot;MsoNormal&quot; style=&quot;text-align: justify;&quot;&gt;&lt;span style=&quot;line-height: 107%;&quot;&gt;ptr=(cast-type*)calloc(n,element-size);&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class=&quot;MsoNormal&quot; style=&quot;text-align: justify;&quot;&gt;&lt;span style=&quot;line-height: 107%;&quot;&gt;This statement will allocate contiguous space in memory for an array of n elements.&amp;nbsp;&lt;/span&gt;&lt;/div&gt;&lt;div class=&quot;MsoNormal&quot; style=&quot;text-align: justify;&quot;&gt;&lt;span style=&quot;line-height: 107%;&quot;&gt;For example:&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class=&quot;MsoNormal&quot; style=&quot;text-align: justify;&quot;&gt;&lt;span style=&quot;line-height: 107%;&quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;span style=&quot;line-height: 107%;&quot;&gt;ptr=(float*)calloc(25,sizeof(float));&lt;/span&gt;&lt;/div&gt;&lt;div class=&quot;MsoNormal&quot; style=&quot;text-align: justify;&quot;&gt;&lt;span style=&quot;line-height: 107%;&quot;&gt;This statement allocates contiguous space in memory for an array of 25 elements each of size of float, i.e, 4 bytes.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class=&quot;MsoNormal&quot; style=&quot;text-align: justify;&quot;&gt;&lt;/div&gt; &lt;script async=&quot;&quot; src=&quot;//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js&quot;&gt;&lt;/script&gt;&lt;!-- above_fb --&gt;&lt;br /&gt;&lt;ins class=&quot;adsbygoogle&quot; data-ad-client=&quot;ca-pub-6017907416695839&quot; data-ad-slot=&quot;4791978105&quot; style=&quot;display: inline-block; height: 250px; width: 300px;&quot;&gt;&lt;/ins&gt;&lt;script&gt;(adsbygoogle = window.adsbygoogle || []).push({}); &lt;/script&gt;&lt;div class=&quot;MsoNormal&quot; style=&quot;text-align: justify;&quot;&gt;&lt;span style=&quot;line-height: 107%;&quot;&gt;&lt;b&gt;3.free();&lt;/b&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class=&quot;MsoNormal&quot; style=&quot;text-align: justify;&quot;&gt;&lt;span style=&quot;line-height: 107%;&quot;&gt;&lt;b&gt;&lt;br /&gt;&lt;/b&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class=&quot;MsoNormal&quot; style=&quot;text-align: justify;&quot;&gt;&lt;span style=&quot;line-height: 107%;&quot;&gt;Dynamically allocated memory with either calloc() or malloc() does not get return on its own.The programmer must use free() explicitly to release space.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class=&quot;MsoNormal&quot; style=&quot;text-align: justify;&quot;&gt;&lt;span style=&quot;line-height: 107%;&quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;i style=&quot;line-height: 107%;&quot;&gt;&lt;b&gt;syntax of free();&lt;/b&gt;&lt;/i&gt;&lt;/div&gt;&lt;div class=&quot;MsoNormal&quot; style=&quot;text-align: justify;&quot;&gt;&lt;span style=&quot;line-height: 107%;&quot;&gt;&lt;i&gt;&lt;br /&gt;&lt;/i&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class=&quot;MsoNormal&quot; style=&quot;text-align: justify;&quot;&gt;&lt;span style=&quot;line-height: 107%;&quot;&gt;free(ptr);&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class=&quot;MsoNormal&quot; style=&quot;text-align: justify;&quot;&gt;&lt;span style=&quot;line-height: 107%;&quot;&gt;This statement cause the space in memory pointed by ptr to be free.&lt;/span&gt;&lt;span style=&quot;line-height: 107%;&quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;/div&gt;&lt;div class=&quot;MsoNormal&quot; style=&quot;text-align: justify;&quot;&gt;&lt;span style=&quot;line-height: 107%;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class=&quot;MsoNormal&quot; style=&quot;text-align: justify;&quot;&gt;&lt;span style=&quot;line-height: 107%;&quot;&gt;&lt;b&gt;4.&lt;/b&gt;&lt;/span&gt;&lt;span style=&quot;line-height: 107%;&quot;&gt;&lt;b&gt;realloc();&lt;/b&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class=&quot;MsoNormal&quot; style=&quot;text-align: justify;&quot;&gt;&lt;span style=&quot;line-height: 107%;&quot;&gt;&lt;b&gt;&lt;br /&gt;&lt;/b&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class=&quot;MsoNormal&quot; style=&quot;text-align: justify;&quot;&gt;&lt;span style=&quot;line-height: 107%;&quot;&gt;If the previously allocated memory is insufficient or more than sufficient.Then, you can change memory size previously allocated using realloc().&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class=&quot;MsoNormal&quot; style=&quot;text-align: justify;&quot;&gt;&lt;span style=&quot;line-height: 107%;&quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;span style=&quot;line-height: 107%;&quot;&gt;&lt;i&gt;&lt;b&gt;Syntax of realloc();&lt;/b&gt;&lt;/i&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class=&quot;MsoNormal&quot; style=&quot;text-align: justify;&quot;&gt;&lt;span style=&quot;line-height: 107%;&quot;&gt;&lt;i&gt;&lt;b&gt;&lt;br /&gt;&lt;/b&gt;&lt;/i&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class=&quot;MsoNormal&quot; style=&quot;text-align: justify;&quot;&gt;&lt;span style=&quot;line-height: 107%;&quot;&gt;ptr=realloc(ptr,newsize);&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class=&quot;MsoNormal&quot; style=&quot;text-align: justify;&quot;&gt;&lt;span style=&quot;line-height: 107%;&quot;&gt;Here, ptr is reallocated with size of newsize.&lt;/span&gt;&lt;/div&gt; &lt;div class=&quot;MsoNormal&quot; style=&quot;text-align: justify;&quot;&gt;&lt;/br&gt;&lt;span style=&quot;line-height: 107%;&quot;&gt;Have a look at following example to understand DMA in C which uses all four functions of DMA:&lt;/span&gt;&lt;/div&gt;&lt;div class=&quot;MsoNormal&quot; style=&quot;text-align: justify;&quot;&gt;&lt;span style=&quot;line-height: 107%;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class=&quot;MsoNormal&quot; style=&quot;text-align: justify;&quot;&gt;&lt;span style=&quot;line-height: 107%;&quot;&gt;&lt;b&gt;Q.&lt;/b&gt;Write a menu driven program to perform following operations in Array using DMA(Dynamic Memory Allocation):&lt;/span&gt;&lt;/div&gt;&lt;div class=&quot;MsoNormal&quot; style=&quot;text-align: justify;&quot;&gt;&lt;span style=&quot;line-height: 107%;&quot;&gt;1.Insert &amp;nbsp; &amp;nbsp; 4.Display&lt;/span&gt;&lt;/div&gt;&lt;div class=&quot;MsoNormal&quot; style=&quot;text-align: justify;&quot;&gt;&lt;span style=&quot;line-height: 107%;&quot;&gt;2.Search &amp;nbsp; 5.Exit.&lt;/span&gt;&lt;/div&gt;&lt;div class=&quot;MsoNormal&quot; style=&quot;text-align: justify;&quot;&gt;&lt;span style=&quot;line-height: 107%;&quot;&gt;3.Delete&lt;/span&gt;&lt;/div&gt;&lt;div class=&quot;MsoNormal&quot; style=&quot;text-align: justify;&quot;&gt;&lt;span style=&quot;line-height: 107%;&quot;&gt;&lt;b&gt;Solution:&lt;/b&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class=&quot;MsoNormal&quot; style=&quot;background: #f5f8fa; border-bottom: 1px solid #5c7b90; border-left: 20px solid #5c7b90; border-right: 1px solid #5c7b90; border-top: 1px solid #5c7b90; color: black; margin: 10px 0 10px 10px; padding: 28px 10px 10px; text-align: justify;&quot;&gt;&lt;span style=&quot;line-height: 17.1200008392334px;&quot;&gt;#include&amp;lt;stdio.h&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;line-height: 17.1200008392334px;&quot;&gt;#include&amp;lt;conio.h&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;line-height: 17.1200008392334px;&quot;&gt;#include&amp;lt;stdlib.h&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;line-height: 17.1200008392334px;&quot;&gt;void main()&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;line-height: 17.1200008392334px;&quot;&gt;{&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;line-height: 17.1200008392334px;&quot;&gt;&amp;nbsp; &amp;nbsp; char *p,d,t;&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;line-height: 17.1200008392334px;&quot;&gt;&amp;nbsp; &amp;nbsp; int s,i,a,c;&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;line-height: 17.1200008392334px;&quot;&gt;&amp;nbsp; &amp;nbsp; printf(&quot;Enter 1D array size:\n&quot;);&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;line-height: 17.1200008392334px;&quot;&gt;&amp;nbsp; &amp;nbsp; scanf(&quot;%d&quot;,&amp;amp;s);&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;line-height: 17.1200008392334px;&quot;&gt;&amp;nbsp; &amp;nbsp; p=(char*)malloc(s*sizeof(char));&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;line-height: 17.1200008392334px;&quot;&gt;&amp;nbsp; &amp;nbsp; printf(&quot;Enter array elements(char):\n&quot;);&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;line-height: 17.1200008392334px;&quot;&gt;&amp;nbsp; &amp;nbsp; for(i=0;i&amp;lt;s;i++)&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;line-height: 17.1200008392334px;&quot;&gt;&amp;nbsp; &amp;nbsp; {&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;line-height: 17.1200008392334px;&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;scanf(&quot;%s&quot;,&amp;amp;p[i]);&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;line-height: 17.1200008392334px;&quot;&gt;&amp;nbsp; &amp;nbsp; }&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;line-height: 17.1200008392334px;&quot;&gt;&amp;nbsp; &amp;nbsp; do&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;line-height: 17.1200008392334px;&quot;&gt;&amp;nbsp; &amp;nbsp; {&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;line-height: 17.1200008392334px;&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;system(&quot;cls&quot;);&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;line-height: 17.1200008392334px;&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;printf(&quot;Choose option for Array Operation:\n1-Insert\n2-Search\n3-Delete\n4-Display\n5-Exit.\n&quot;);&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;line-height: 17.1200008392334px;&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;scanf(&quot;%d&quot;,&amp;amp;c);&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;line-height: 17.1200008392334px;&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;switch(c)&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;line-height: 17.1200008392334px;&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; {&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;line-height: 17.1200008392334px;&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;case 1:&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;line-height: 17.1200008392334px;&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;system(&quot;cls&quot;);&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;line-height: 17.1200008392334px;&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;printf(&quot;After which position you want to insert?\n&quot;);&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;line-height: 17.1200008392334px;&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;scanf(&quot;%d&quot;,&amp;amp;a);&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;line-height: 17.1200008392334px;&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;if(a&amp;gt;s-1)&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;line-height: 17.1200008392334px;&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; {&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;line-height: 17.1200008392334px;&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;printf(&quot;Invalid position!\a&quot;);&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;line-height: 17.1200008392334px;&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;break;&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;line-height: 17.1200008392334px;&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; }&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;line-height: 17.1200008392334px;&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; printf(&quot;What you want to insert?\n&quot;);&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;line-height: 17.1200008392334px;&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; scanf(&quot;%s&quot;,&amp;amp;d);&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;line-height: 17.1200008392334px;&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; p=(char*)realloc(p,s++);&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;line-height: 17.1200008392334px;&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; for(i=s-1;i&amp;gt;a+1;i--)&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;line-height: 17.1200008392334px;&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; {&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;line-height: 17.1200008392334px;&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; p[i]=p[i-1];&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;line-height: 17.1200008392334px;&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; }&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;line-height: 17.1200008392334px;&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; p[a+1]=d;&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;line-height: 17.1200008392334px;&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; printf(&quot;Your array elements after insertion are:\n&quot;);&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;line-height: 17.1200008392334px;&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; for(i=0;i&amp;lt;s;i++)&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;line-height: 17.1200008392334px;&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;{&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;line-height: 17.1200008392334px;&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; printf(&quot;%c &quot;,p[i]);&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;line-height: 17.1200008392334px;&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;}&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;line-height: 17.1200008392334px;&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;break;&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;line-height: 17.1200008392334px;&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;case 2:&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;line-height: 17.1200008392334px;&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;system(&quot;cls&quot;);&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;line-height: 17.1200008392334px;&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;printf(&quot;What you want to search?\n&quot;);&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;line-height: 17.1200008392334px;&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;scanf(&quot;%s&quot;,&amp;amp;t);&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;line-height: 17.1200008392334px;&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;printf(&quot;Your element is at following location of array:\n&quot;);&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;line-height: 17.1200008392334px;&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;for(i=0;i&amp;lt;s;i++)&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;line-height: 17.1200008392334px;&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;{&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;line-height: 17.1200008392334px;&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; if(p[i]==t)&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;line-height: 17.1200008392334px;&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;{&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;line-height: 17.1200008392334px;&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; printf(&quot;%d,&quot;,i);&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;line-height: 17.1200008392334px;&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;}&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;line-height: 17.1200008392334px;&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; }&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;line-height: 17.1200008392334px;&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; break;&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;line-height: 17.1200008392334px;&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; case 3:&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;line-height: 17.1200008392334px;&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; system(&quot;cls&quot;);&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;line-height: 17.1200008392334px;&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; printf(&quot;Which position element you want to delete?\n&quot;);&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;line-height: 17.1200008392334px;&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; scanf(&quot;%d&quot;,&amp;amp;a);&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;line-height: 17.1200008392334px;&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; if(a&amp;gt;s-1)&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;line-height: 17.1200008392334px;&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;{&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;line-height: 17.1200008392334px;&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; printf(&quot;Invalid position!\a&quot;);&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;line-height: 17.1200008392334px;&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; break;&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;line-height: 17.1200008392334px;&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; }&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;line-height: 17.1200008392334px;&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; for(i=a;i&amp;lt;s-1;i++)&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;line-height: 17.1200008392334px;&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; {&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;line-height: 17.1200008392334px;&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;p[i]=p[i+1];&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;line-height: 17.1200008392334px;&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; }&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;line-height: 17.1200008392334px;&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; s--;&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;line-height: 17.1200008392334px;&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; p=(char*)realloc(p,s);&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;line-height: 17.1200008392334px;&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; printf(&quot;Your number is deleted!&quot;);&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;line-height: 17.1200008392334px;&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; break;&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;line-height: 17.1200008392334px;&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; case 4:&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;line-height: 17.1200008392334px;&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; system(&quot;cls&quot;);&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;line-height: 17.1200008392334px;&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; printf(&quot;The elements in array are:\n&quot;);&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;line-height: 17.1200008392334px;&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; for(i=0;i&amp;lt;s;i++)&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;line-height: 17.1200008392334px;&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;{&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;line-height: 17.1200008392334px;&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; printf(&quot;%c &quot;,p[i]);&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;line-height: 17.1200008392334px;&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;}&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;line-height: 17.1200008392334px;&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;break;&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;line-height: 17.1200008392334px;&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;case 5:&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;line-height: 17.1200008392334px;&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; exit(0);&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;line-height: 17.1200008392334px;&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;default:&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;line-height: 17.1200008392334px;&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;printf(&quot;Your choice is wrong.&quot;);&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;line-height: 17.1200008392334px;&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;break;&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;line-height: 17.1200008392334px;&quot;&gt;&amp;nbsp; &amp;nbsp;}&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;line-height: 17.1200008392334px;&quot;&gt;&amp;nbsp; &amp;nbsp;getch();&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;line-height: 17.1200008392334px;&quot;&gt;&amp;nbsp; &amp;nbsp;fflush(stdin);&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;line-height: 17.1200008392334px;&quot;&gt;&amp;nbsp; &amp;nbsp;}while(1);&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;line-height: 17.1200008392334px;&quot;&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;line-height: 17.1200008392334px;&quot;&gt;}&lt;/span&gt;&lt;/div&gt;&lt;div class=&quot;MsoNormal&quot; style=&quot;text-align: justify;&quot;&gt;&lt;span style=&quot;line-height: 17.1200008392334px;&quot;&gt;--------------------------------------------------------------------------------------------------------------------------&lt;/span&gt;&lt;/div&gt;&lt;div class=&quot;MsoNormal&quot; style=&quot;text-align: justify;&quot;&gt;&lt;span style=&quot;line-height: 17.1200008392334px;&quot;&gt;Don&#39;t forget to comment below if you have still any confusions.&lt;/span&gt;&lt;/div&gt;&lt;div class=&quot;MsoNormal&quot; style=&quot;text-align: justify;&quot;&gt;&lt;span style=&quot;line-height: 17.1200008392334px;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5109055197243893191/posts/default/5497005154651055661'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5109055197243893191/posts/default/5497005154651055661'/><link rel='alternate' type='text/html' href='http://www.sparajuli.com.np/2015/06/dynamic-memory-allocation-in-c.html' title='(DMA)Dynamic Memory Allocation in C - Explained with examples'/><author><name>mlworld</name><uri>http://www.blogger.com/profile/01888181411965090399</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><gd:extendedProperty name="commentSource" value="1"/><gd:extendedProperty name="commentModerationMode" value="FILTERED_POSTMOD"/></entry><entry><id>tag:blogger.com,1999:blog-5109055197243893191.post-3490566589646962942</id><published>2015-05-11T11:25:00.004+05:45</published><updated>2015-10-26T19:58:44.404+05:45</updated><category scheme="http://www.blogger.com/atom/ns#" term="Tech"/><title type='text'>Top 5 Future Inventions in Technology 2019 - 2050</title><content type='html'>There are lots of expected future inventions in technology.Among them, we have taken top five which are given below.The video below the list contains detail about them.Don&#39;t forget to watch and comment below which one is best.&lt;br /&gt;&lt;br /&gt;The following numbers are in descending order :&lt;br /&gt;&lt;h3&gt;5. Cicret Bracelet :&lt;/h3&gt;&lt;br /&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;a href=&quot;http://1.bp.blogspot.com/-4bV9zPjXvBo/VVA9zM0qf4I/AAAAAAAAAmE/Z57oEIY55oY/s1600/cicretbracelet.png&quot; imageanchor=&quot;1&quot;&gt;&lt;img alt=&quot;Smart Cicret Bracelet&quot; border=&quot;0&quot; height=&quot;216&quot; src=&quot;http://1.bp.blogspot.com/-4bV9zPjXvBo/VVA9zM0qf4I/AAAAAAAAAmE/Z57oEIY55oY/s320/cicretbracelet.png&quot; title=&quot;Cicret Bracelet&quot; width=&quot;320&quot; /&gt;&lt;/a&gt;&lt;/div&gt;&lt;h3 style=&quot;clear: both; text-align: justify;&quot;&gt;&lt;span style=&quot;text-align: left;&quot;&gt;4. I Watch :&lt;/span&gt;&lt;/h3&gt;&lt;h3 style=&quot;clear: both; text-align: center;&quot;&gt;&lt;a href=&quot;http://2.bp.blogspot.com/-7bK7o9mchMU/VVA-PlEojRI/AAAAAAAAAmM/3q2cFoyaoNk/s1600/Snapshot_16.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img alt=&quot;I Watch in Future&quot; border=&quot;0&quot; height=&quot;180&quot; src=&quot;http://2.bp.blogspot.com/-7bK7o9mchMU/VVA-PlEojRI/AAAAAAAAAmM/3q2cFoyaoNk/s320/Snapshot_16.png&quot; title=&quot;I watch&quot; width=&quot;320&quot; /&gt;&lt;/a&gt;&lt;/h3&gt;&lt;h3 style=&quot;clear: both; text-align: left;&quot;&gt;3.Wall-Format Display Glass :&lt;/h3&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;a href=&quot;http://1.bp.blogspot.com/-NJw0whVXX5A/VVA_KQJERAI/AAAAAAAAAmY/28Qm2FSp1oc/s1600/Capture.PNG&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img alt=&quot;Future Touch screen&quot; border=&quot;0&quot; height=&quot;197&quot; src=&quot;http://1.bp.blogspot.com/-NJw0whVXX5A/VVA_KQJERAI/AAAAAAAAAmY/28Qm2FSp1oc/s320/Capture.PNG&quot; title=&quot;Future Touch Wall Screen&quot; width=&quot;320&quot; /&gt;&lt;/a&gt;&lt;/div&gt;&lt;h3 style=&quot;clear: both; text-align: left;&quot;&gt;2.Smart Card :&lt;/h3&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;a href=&quot;http://1.bp.blogspot.com/-IhmoMBECCsE/VVA_e9KQzLI/AAAAAAAAAmg/PoIR8U4XEoM/s1600/Capture1.PNG&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img alt=&quot;Smart Card in Future&quot; border=&quot;0&quot; height=&quot;196&quot; src=&quot;http://1.bp.blogspot.com/-IhmoMBECCsE/VVA_e9KQzLI/AAAAAAAAAmg/PoIR8U4XEoM/s320/Capture1.PNG&quot; title=&quot;Future Smart Card&quot; width=&quot;320&quot; /&gt;&lt;/a&gt;&lt;/div&gt;&lt;h3 style=&quot;clear: both; text-align: left;&quot;&gt;1.Smart Newspaper :&lt;/h3&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;a href=&quot;http://4.bp.blogspot.com/-Nzi3e85VWuE/VVA_yHNWeyI/AAAAAAAAAmo/m156e7hR-Bs/s1600/Capture01.PNG&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img alt=&quot;Smart newspaper in future&quot; border=&quot;0&quot; height=&quot;154&quot; src=&quot;http://4.bp.blogspot.com/-Nzi3e85VWuE/VVA_yHNWeyI/AAAAAAAAAmo/m156e7hR-Bs/s320/Capture01.PNG&quot; title=&quot;Smart newspaper in future&quot; width=&quot;320&quot; /&gt;&lt;/a&gt;&lt;/div&gt;&lt;h4 style=&quot;clear: both; text-align: left;&quot;&gt;Watch the video of top 5 expected future Inventions in Technology Below:&lt;/h4&gt;&lt;script async=&quot;&quot; src=&quot;//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js&quot;&gt;&lt;/script&gt;&lt;!-- future tech 2019 - 2050 --&gt;&lt;br /&gt;&lt;ins class=&quot;adsbygoogle&quot; data-ad-client=&quot;ca-pub-6017907416695839&quot; data-ad-format=&quot;auto&quot; data-ad-slot=&quot;9923952108&quot; style=&quot;display: block;&quot;&gt;&lt;/ins&gt;&lt;script&gt;(adsbygoogle = window.adsbygoogle || []).push({}); &lt;/script&gt; &lt;style&gt;.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }&lt;/style&gt;&lt;br /&gt;&lt;div class=&quot;embed-container&quot;&gt;&lt;iframe allowfullscreen=&quot;&quot; frameborder=&quot;0&quot; src=&quot;https://www.youtube.com/embed/vbNHCn2gHQ4?&amp;amp;autoplay=0&amp;amp;rel=0&amp;amp;theme=light&amp;amp;showinfo=0&amp;amp;modestbranding=1&amp;amp;hd=1&amp;amp;autohide=1&quot;&gt;&lt;/iframe&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5109055197243893191/posts/default/3490566589646962942'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5109055197243893191/posts/default/3490566589646962942'/><link rel='alternate' type='text/html' href='http://www.sparajuli.com.np/2015/05/top-5-future-inventions-in-technology.html' title='Top 5 Future Inventions in Technology 2019 - 2050'/><author><name>mlworld</name><uri>http://www.blogger.com/profile/01888181411965090399</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://1.bp.blogspot.com/-4bV9zPjXvBo/VVA9zM0qf4I/AAAAAAAAAmE/Z57oEIY55oY/s72-c/cicretbracelet.png" height="72" width="72"/><gd:extendedProperty name="commentSource" value="1"/><gd:extendedProperty name="commentModerationMode" value="FILTERED_POSTMOD"/></entry><entry><id>tag:blogger.com,1999:blog-5109055197243893191.post-4344772170173050619</id><published>2015-05-08T13:33:00.000+05:45</published><updated>2015-05-08T14:45:32.482+05:45</updated><category scheme="http://www.blogger.com/atom/ns#" term="Tech"/><title type='text'>Difference Between SRAM and DRAM</title><content type='html'>&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;br /&gt;&lt;/div&gt;&lt;div class=&quot;&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;a href=&quot;http://2.bp.blogspot.com/-dksYrso_pTg/VUx50LDjMZI/AAAAAAAAAls/4f3KJxkvX7A/s1600/ddr4_2.jpg&quot; imageanchor=&quot;1&quot; style=&quot;clear: left; float: left; margin-bottom: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;160&quot; src=&quot;http://2.bp.blogspot.com/-dksYrso_pTg/VUx50LDjMZI/AAAAAAAAAls/4f3KJxkvX7A/s320/ddr4_2.jpg&quot; width=&quot;320&quot; /&gt;&lt;/a&gt;&lt;br /&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;b style=&quot;font-weight: bold;&quot;&gt;Random Access Memory(RAM)&lt;/b&gt;&lt;b&gt; &amp;nbsp;&lt;/b&gt;is temporary memory of computer system.It is also known as volatile memory.It is divided into two types: SRAM and DRAM where SRAM stands for Static Random Access Memory and DRAM stands for Dynamic Random Access Memory.&lt;/div&gt;&lt;/div&gt;&lt;div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;div&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;The six differences between &lt;b&gt;SRAM&lt;/b&gt; and&lt;b&gt; DRAM&lt;/b&gt; are as follows:&lt;/div&gt;&lt;div&gt;&lt;ul&gt;&lt;li&gt;SRAM is faster than DRAM.&lt;/li&gt;&lt;li&gt;SRAM is static but DRAM is dynamic.&lt;/li&gt;&lt;li&gt;SRAM consumes less power than DRAM.&lt;/li&gt;&lt;li&gt;SRAM is used as Cache Memory but DRAM is used as Main Memory.&lt;/li&gt;&lt;li&gt;DRAM is cheaper than SRAM.&lt;/li&gt;&lt;li&gt;DRAM uses less transistors per bit of memory than SRAM.&lt;/li&gt;&lt;/ul&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5109055197243893191/posts/default/4344772170173050619'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5109055197243893191/posts/default/4344772170173050619'/><link rel='alternate' type='text/html' href='http://www.sparajuli.com.np/2015/05/difference-between-sram-and-dram.html' title='Difference Between SRAM and DRAM'/><author><name>mlworld</name><uri>http://www.blogger.com/profile/01888181411965090399</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://2.bp.blogspot.com/-dksYrso_pTg/VUx50LDjMZI/AAAAAAAAAls/4f3KJxkvX7A/s72-c/ddr4_2.jpg" height="72" width="72"/><gd:extendedProperty name="commentSource" value="1"/><gd:extendedProperty name="commentModerationMode" value="FILTERED_POSTMOD"/></entry><entry><id>tag:blogger.com,1999:blog-5109055197243893191.post-5975701966545372076</id><published>2015-05-07T19:50:00.001+05:45</published><updated>2015-05-31T18:31:55.759+05:45</updated><category scheme="http://www.blogger.com/atom/ns#" term="Tutorials"/><title type='text'>Make Windows 7 run faster and smoothly- Top 5 ways</title><content type='html'>Are you worried about your windows slow performance? Here are top 5 steps of all time to make windows 7 run faster than ever.&lt;br /&gt;When any program or game can&#39;t run fast and smoothly, you can apply these changes to your system.Many programs don&#39;t run in our computer due to lack of system requirements.In that case, these ways are useful to make your computer run faster.&lt;br /&gt;These ways are applicable for other versions of windows such as: Windows XP,Windows Vista,Windows 10, etc.&lt;br /&gt;The top five best ways to make your windows 7 run faster are discussed below:-&lt;br /&gt;&lt;br /&gt;&lt;h3&gt;1.Performance and Power Options:&lt;/h3&gt;&lt;div&gt;Go to Computer&amp;gt;&amp;gt;System Properties.And at right side,click on: Advanced System Settings.Then,go to Advanced tab.In Performance option, click Settings.Choose adjust for best performance option then,click Apply and OK.&lt;/div&gt;&lt;div&gt;Now, your can experience your computer is faster than previous.&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;i&gt;Screen Shots:&lt;/i&gt;&lt;/div&gt;&lt;br /&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;a href=&quot;http://2.bp.blogspot.com/-GD8fQs_ivZw/VUtjDQtrwLI/AAAAAAAAAkg/ShH2syHWInQ/s1600/Capture2.PNG&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;320&quot; src=&quot;http://2.bp.blogspot.com/-GD8fQs_ivZw/VUtjDQtrwLI/AAAAAAAAAkg/ShH2syHWInQ/s320/Capture2.PNG&quot; width=&quot;289&quot; /&gt;&lt;/a&gt;&lt;a href=&quot;http://4.bp.blogspot.com/-jqm8MXSIVuY/VUtjP7uM-_I/AAAAAAAAAko/bIaRUpY6Ooc/s1600/Capture1.PNG&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;320&quot; src=&quot;http://4.bp.blogspot.com/-jqm8MXSIVuY/VUtjP7uM-_I/AAAAAAAAAko/bIaRUpY6Ooc/s320/Capture1.PNG&quot; width=&quot;219&quot; /&gt;&lt;/a&gt;&lt;/div&gt;&lt;div&gt;&lt;i&gt;&lt;br /&gt;&lt;/i&gt;&lt;/div&gt;&lt;br /&gt;&lt;h3&gt;2.Installing Antivirus:&lt;/h3&gt;&lt;div&gt;When your computer is infected by virus , your computer runs slowly.Virus my have affected your boot files or any other parts of computer.Virus may have infected your important files too.&lt;/div&gt;&lt;div&gt;Antivirus manages all the threats in your computer and makes your system run smoothly.So, you need to install antivirus to make your windows run faster.Some of the popular Antivirus Software are:&lt;/div&gt;&lt;div&gt;&amp;nbsp; &amp;nbsp;I. &amp;nbsp;&lt;a href=&quot;http://www.kaspersky.com/&quot; target=&quot;_blank&quot;&gt; Kaspersky Antivrus.&lt;/a&gt;&lt;/div&gt;&lt;div&gt;&amp;nbsp; &amp;nbsp;II. &lt;a href=&quot;http://www.avira.com/en/avira-free-antivirus&quot; target=&quot;_blank&quot;&gt;Avira Antivirus.&lt;/a&gt;&lt;/div&gt;&lt;div&gt;&amp;nbsp; &amp;nbsp;III.&lt;a href=&quot;https://www.avast.com/index&quot; target=&quot;_blank&quot;&gt;Avast Antivirus.&lt;/a&gt;&lt;/div&gt;&lt;div&gt;&amp;nbsp; &amp;nbsp;IV.&lt;a href=&quot;http://free.avg.com/ww-en/homepage&quot; target=&quot;_blank&quot;&gt;AVG Antivirus.&lt;/a&gt;&lt;/div&gt;&lt;div&gt;&amp;nbsp; &amp;nbsp;V. &lt;a href=&quot;http://www.mcafee.com/us/&quot; target=&quot;_blank&quot;&gt;McAfee&amp;nbsp;&lt;/a&gt;&lt;/div&gt;&lt;div&gt;&lt;/div&gt;&lt;h3&gt;3.Disk Clean Up:&lt;/h3&gt;&lt;div&gt;Go to Windows Search and type:Disk Cleanup.Open Disk Cleanup and choose drive you want to clean up.You can choose all drives turn by turn.Then Click OK.In new Window,select the options which you want to delete and click Clean Up System Files and then OK.Then Click Deletes file in pop pop window.You&#39;re done.&lt;/div&gt;&lt;div&gt;Unwanted files from your computer are removed which frees memory and makes your computer run faster.&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;i&gt;ScreenShot:&lt;/i&gt;&amp;nbsp;&lt;/div&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;a href=&quot;http://2.bp.blogspot.com/-A06EixWHe-s/VUtpkbnNdtI/AAAAAAAAAk4/iYANgzkU7k8/s1600/21.PNG&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;320&quot; src=&quot;http://2.bp.blogspot.com/-A06EixWHe-s/VUtpkbnNdtI/AAAAAAAAAk4/iYANgzkU7k8/s320/21.PNG&quot; width=&quot;259&quot; /&gt;&lt;/a&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;h3&gt;4.Desktop Clearance:&lt;/h3&gt;&lt;div&gt;If there are many files, unwanted shortcuts of files and other icons in your desktop, you have to manage them.You can delete or keep them in a separate folder to manage.&lt;/div&gt;&lt;div&gt;There should not be many files, icons in the desktop because it takes long to refresh and redraw your desktop.Simultaneously, it has effect on your system.&lt;/div&gt;&lt;div&gt;&amp;nbsp;&amp;nbsp;&lt;/div&gt;&lt;h3&gt;5.Clearing Cache Memory:&lt;/h3&gt;&lt;div&gt;Cache memory consumes RAM of your system.So, your computer gets slow when cache memory is more.So, you have to clear cache memory time-to-time.&lt;/div&gt;&lt;div&gt;There are two ways to clear cache memory from your computer.&lt;/div&gt;&lt;div&gt;STEP 1: Go to RUN and type: &lt;b&gt;%temp%&lt;/b&gt; then temp folder is opened.Select all files in the folder and delete.&lt;/div&gt;&lt;div&gt;STEP 2: Go to RUN and type: &lt;b&gt;prefetch &lt;/b&gt;then prefetch folder is opened.Select all files in the folder and delete.&lt;/div&gt;&lt;div&gt;In this way, Cache Memory is cleared from your computer.Now, your windows will run faster.&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;i&gt;ScreenShots:&lt;/i&gt;&lt;/div&gt;&lt;div&gt;&lt;i&gt;&lt;br /&gt;&lt;/i&gt;&lt;/div&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;a href=&quot;http://3.bp.blogspot.com/-uNFiZouY5T0/VUtvBv2byaI/AAAAAAAAAlQ/IIQ1Lk6zIBU/s1600/Capture1.PNG&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em; text-align: center;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;http://3.bp.blogspot.com/-uNFiZouY5T0/VUtvBv2byaI/AAAAAAAAAlQ/IIQ1Lk6zIBU/s1600/Capture1.PNG&quot; /&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;br /&gt;&lt;/div&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;a href=&quot;http://2.bp.blogspot.com/-Q7RPkUhFkkA/VUtvAe32VxI/AAAAAAAAAlI/-MXHBpqVAgc/s1600/Captur.PNG&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;http://2.bp.blogspot.com/-Q7RPkUhFkkA/VUtvAe32VxI/AAAAAAAAAlI/-MXHBpqVAgc/s1600/Captur.PNG&quot; /&gt;&lt;/a&gt;&lt;/div&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;br /&gt;&lt;/div&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;br /&gt;&lt;/div&gt;&lt;h4&gt;If you are not clear yet, you can watch video below :&lt;/h4&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;style&gt;.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }&lt;/style&gt;&lt;br /&gt;&lt;div class=&quot;embed-container&quot;&gt;&lt;iframe allowfullscreen=&quot;&quot; frameborder=&quot;0&quot; src=&quot;https://www.youtube.com/embed/RBT6QvlxpdM?&amp;amp;autoplay=0&amp;amp;rel=0&amp;amp;theme=light&amp;amp;showinfo=0&amp;amp;modestbranding=1&amp;amp;hd=1&amp;amp;autohide=1&quot;&gt;&lt;/iframe&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5109055197243893191/posts/default/5975701966545372076'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5109055197243893191/posts/default/5975701966545372076'/><link rel='alternate' type='text/html' href='http://www.sparajuli.com.np/2015/05/make-windows-7-run-faster-and-smoothly.html' title='Make Windows 7 run faster and smoothly- Top 5 ways'/><author><name>mlworld</name><uri>http://www.blogger.com/profile/01888181411965090399</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://2.bp.blogspot.com/-GD8fQs_ivZw/VUtjDQtrwLI/AAAAAAAAAkg/ShH2syHWInQ/s72-c/Capture2.PNG" height="72" width="72"/><gd:extendedProperty name="commentSource" value="1"/><gd:extendedProperty name="commentModerationMode" value="FILTERED_POSTMOD"/></entry><entry><id>tag:blogger.com,1999:blog-5109055197243893191.post-1853543656549859561</id><published>2015-03-04T01:29:00.001+05:45</published><updated>2015-06-25T16:27:15.093+05:45</updated><category scheme="http://www.blogger.com/atom/ns#" term="c -programming"/><title type='text'>Keywords and Identifiers in C Programming</title><content type='html'>&lt;div class=&quot;MsoNoSpacing&quot;&gt;&lt;b&gt;&lt;span style=&quot;font-size: 14.0pt;&quot;&gt;Keywords:&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/b&gt;&lt;br /&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;a href=&quot;http://3.bp.blogspot.com/-usGI2CTD8Fk/VTNbRBTXujI/AAAAAAAAAe8/cdFL0aa4LYo/s1600/kewords_in_c.jpg&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;100&quot; src=&quot;http://3.bp.blogspot.com/-usGI2CTD8Fk/VTNbRBTXujI/AAAAAAAAAe8/cdFL0aa4LYo/s1600/kewords_in_c.jpg&quot; width=&quot;200&quot; /&gt;&lt;/a&gt;&lt;/div&gt;&lt;b&gt;&lt;span style=&quot;font-size: 14.0pt;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/b&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;&lt;br /&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;Keywords are the reserved words used in programming. Each keywords has fixed meaning and that can&#39;t be changed by user. For e.g: int book;&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;Here, int is a keyword that indicates, &#39;book&#39; is of type integer. &lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;As, C programming is case sensitive, all keywords must be written in lowercase. Here is the list of all keywords predefined by ANSI C.&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;&lt;br /&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;&lt;b&gt;Keywords in C Language&lt;/b&gt;:&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;&lt;br /&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;auto &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;double &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; int &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;nbsp;struct&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;break &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;else &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;long &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;switch&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;case &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;enum &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; register &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;typedef&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;char &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;extern &amp;nbsp;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;return &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;union&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;for &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;signed &amp;nbsp;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;void &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;continue&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;do &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;if &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;nbsp;static &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; while&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;default &amp;nbsp; &amp;nbsp;goto &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;sizeof &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; volatile&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;const &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;float &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;short &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;unsigned&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;br /&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;Besides these keywords, there are some additional keywords supported by Turbo C.&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;Additional Keywords for Borland C:&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;&lt;br /&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;asm ,far, interrupt ,pascal ,near, huge, cdecl&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;&lt;br /&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;&lt;b&gt;&lt;span style=&quot;font-size: 14.0pt;&quot;&gt;Identifiers&lt;/span&gt;&lt;/b&gt;:&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;&lt;br /&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;In C programming, identifiers are names given to C entities, such as variables, functions, structures etc. Identifier are created to give unique name to C entities to identify it during the execution of program. For example:&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;&lt;br /&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;int money;&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;int mango_tree;&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;Here, ‘money’ is a identifier which denotes a variable of type integer. Similarly, ‘mango_tree’ is another identifier, which denotes another variable of type integer.&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;&lt;br /&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;&lt;b&gt;Rules for writing identifier:&lt;o:p&gt;&lt;/o:p&gt;&lt;/b&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;&lt;br /&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;An identifier can be composed of letters (both uppercase and lowercase letters), digits and underscore &#39;_&#39; only.&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;The first letter of identifier should be either a letter or an underscore. But, it is discouraged to start an identifier name with an underscore though it is legal. It is because, identifier that starts with underscore can conflict with system names. In such cases, compiler will complain about it. Some system names that start with underscore are _fileno, _iob, _wfopen etc.&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;There is no rule for the length of an identifier. However, the first 31 characters of an identifier are discriminated by the compiler. So, the first 31 letters of two identifiers in a program should be different.&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;&lt;br /&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;&lt;b&gt;Tips for Good Programming Practice :&lt;o:p&gt;&lt;/o:p&gt;&lt;/b&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;Programmer can choose the name of identifier whatever they want. However, if the programmer choose meaningful name for an identifier, it will be easy to understand and work on, particularly in case of large program.&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5109055197243893191/posts/default/1853543656549859561'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5109055197243893191/posts/default/1853543656549859561'/><link rel='alternate' type='text/html' href='http://www.sparajuli.com.np/2015/03/keyword-and-identifiers-in-c.html' title='Keywords and Identifiers in C Programming'/><author><name>mlworld</name><uri>http://www.blogger.com/profile/01888181411965090399</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://3.bp.blogspot.com/-usGI2CTD8Fk/VTNbRBTXujI/AAAAAAAAAe8/cdFL0aa4LYo/s72-c/kewords_in_c.jpg" height="72" width="72"/><gd:extendedProperty name="commentSource" value="1"/><gd:extendedProperty name="commentModerationMode" value="FILTERED_POSTMOD"/></entry><entry><id>tag:blogger.com,1999:blog-5109055197243893191.post-8385563997536445966</id><published>2015-03-04T01:22:00.001+05:45</published><updated>2015-06-25T16:28:10.356+05:45</updated><category scheme="http://www.blogger.com/atom/ns#" term="c -programming"/><title type='text'>C Programming - Operators</title><content type='html'>&lt;div class=&quot;MsoNoSpacing&quot;&gt;Operators are the symbol which operates on value or a variable. For example: + is a operator to perform addition.&lt;br /&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;a href=&quot;http://3.bp.blogspot.com/-ho_SRlzj0HQ/VTNdHro_MYI/AAAAAAAAAfI/RDj6OhhJiCI/s1600/operators_in_c.jpg&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;http://3.bp.blogspot.com/-ho_SRlzj0HQ/VTNdHro_MYI/AAAAAAAAAfI/RDj6OhhJiCI/s1600/operators_in_c.jpg&quot; /&gt;&lt;/a&gt;&lt;/div&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;C programming language has wide range of operators to perform various operations. For better understanding of operators, these operators can be classified as:&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;&lt;br /&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;&lt;b&gt;Operators in C programming:&lt;/b&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;&lt;br /&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;Arithmetic Operators&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;Increment and Decrement Operators&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;Assignment Operators&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;Relational Operators&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;Logical Operators&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;Conditional Operators&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;Bitwise Operators&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;Special Operators&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;&lt;br /&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;&lt;b&gt;Arithmetic Operators :&lt;/b&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;&lt;br /&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;&lt;b&gt;Operators &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Meaning of Operator&lt;o:p&gt;&lt;/o:p&gt;&lt;/b&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;+ &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; addition or unary plus&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;- &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;subtraction or &amp;nbsp;unary minus&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;* &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;multiplication&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;/ &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;division&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;% &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;remainder after division (modulo division)&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;&lt;br /&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;Example of working of arithmetic operators:&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;&lt;br /&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;/* Program to demonstrate the working of arithmetic operators in C. &amp;nbsp;*/&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;#include &amp;lt;stdio.h&amp;gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;int main()&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;{&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;&amp;nbsp; &amp;nbsp; int a=9,b=4,c;&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;&amp;nbsp; &amp;nbsp; c=a+b;&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;&amp;nbsp; &amp;nbsp; printf(&quot;a+b=%d\n&quot;,c);&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;&amp;nbsp; &amp;nbsp; c=a-b;&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;&amp;nbsp; &amp;nbsp; printf(&quot;a-b=%d\n&quot;,c);&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;&amp;nbsp; &amp;nbsp; c=a*b;&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;&amp;nbsp; &amp;nbsp; printf(&quot;a*b=%d\n&quot;,c);&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;&amp;nbsp; &amp;nbsp; c=a/b;&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;&amp;nbsp; &amp;nbsp; printf(&quot;a/b=%d\n&quot;,c);&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;&amp;nbsp; &amp;nbsp; c=a%b;&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;&amp;nbsp; &amp;nbsp; printf(&quot;Remainder when a divided by b=%d\n&quot;,c);&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;&amp;nbsp; &amp;nbsp; return 0;&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;}&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;&lt;br /&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;a+b=13&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;a-b=5&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;a*b=36&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;a/b=2&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;Remainder when a divided by b=1&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;&lt;br /&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;&lt;i&gt;Explanation&lt;/i&gt;:&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;&lt;br /&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;Here, the operators +, - and * performed normally as you expected. In normal calculation, 9/4 equals to 2.25. But, the output is 2 in this program. It is because, a and b are both integers. So, the output is also integer and the compiler neglects the term after decimal point and shows answer 2 instead of 2.25. And, finally a%b is 1,i.e. ,when a=9 is divided by b=4, remainder is 1.&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;&lt;br /&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;Suppose a=5.0, b=2.0, c=5 and d=2&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;In C programming,&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;a/b=2.5 &amp;nbsp; &amp;nbsp;&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;a/d=2.5&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;c/b=2.5 &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;c/d=2&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;Note: % operator can only be used with integers.&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;&lt;br /&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;&lt;b&gt;Increment and decrement operators:&lt;/b&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;&lt;br /&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;In C, ++ and -- are called increment and decrement operators respectively. Both of these operators are unary operators, i.e, used on single operand. ++ adds 1 to operand and -- subtracts 1 to operand respectively. For example:&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;&lt;br /&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;Let a=5 and b=10&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;a++; &amp;nbsp;//a becomes 6&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;a--; &amp;nbsp;//a becomes 5&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;++a; &amp;nbsp;//a becomes 6&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;--a; &amp;nbsp;//a becomes 5&amp;nbsp;&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;&lt;i&gt;Difference between ++ and -- operator as postfix and prefix:&lt;/i&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;&lt;br /&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;When i++ is used as prefix(like: ++var), ++var will increment the value of var and then return it but, if ++ is used as postfix(like: var++), operator will return the value of operand first and then only increment it. This can be demonstrated by an example:&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;&lt;br /&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;#include &amp;lt;stdio.h&amp;gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;int main()&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;{&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;&amp;nbsp; &amp;nbsp; int c=2,d=2;&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;&amp;nbsp; &amp;nbsp; printf(&quot;%d\n&quot;,c++); //this statement displays 2 then, only c incremented by 1 to 3.&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;&amp;nbsp; &amp;nbsp; printf(&quot;%d&quot;,++c); &amp;nbsp; //this statement increments 1 to c then, only c is displayed.&amp;nbsp;&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;&amp;nbsp; &amp;nbsp; return 0;&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;}&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;&lt;br /&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;&lt;i&gt;Output&lt;/i&gt;:&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;&lt;br /&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;2&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;4&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;&lt;br /&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;&lt;b&gt;Assignment Operators:&lt;/b&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;&lt;br /&gt;&lt;/div&gt;&lt;!--adsense--&gt;&lt;script async=&quot;&quot; src=&quot;//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js&quot;&gt;&lt;/script&gt;&lt;!-- fb and google plus middle --&gt;&lt;br /&gt;&lt;ins class=&quot;adsbygoogle&quot; data-ad-client=&quot;ca-pub-6017907416695839&quot; data-ad-slot=&quot;8715976902&quot; style=&quot;display: inline-block; height: 250px; width: 300px;&quot;&gt;&lt;/ins&gt;&lt;script&gt;(adsbygoogle = window.adsbygoogle || []).push({}); &lt;/script&gt; &lt;br /&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;The most common assignment operator is =. This operator assigns the value in right side to the left side. For example:&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;&lt;br /&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;var=5 &amp;nbsp;//5 is assigned to var&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;a=c; &amp;nbsp; //value of c is assigned to a&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;5=c; &amp;nbsp; // Error! 5 is a constant.&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;Operator Example Same as&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;= a=b a=b&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;+= a+=b a=a+b&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;-= a-=b a=a-b&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;*= a*=b a=a*b&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;/= a/=b a=a/b&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;%= a%=b a=a%b&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;&lt;br /&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;&lt;b&gt;Relational Operator:&lt;/b&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;&lt;br /&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;Relational operators checks relationship between two operands. If the relation is true, it returns value 1 and if the relation is false, it returns value 0. For example:&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;&lt;br /&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;a&amp;gt;b&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;Here, &amp;gt; is a relational operator. If a is greater than b, a&amp;gt;b returns 1 if not then, it returns 0.&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;&lt;br /&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;Relational operators are used in decision making and loops in C programming.&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;&lt;br /&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;&lt;b&gt;Operators &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;Meaning of Operator&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Example&lt;o:p&gt;&lt;/o:p&gt;&lt;/b&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;== &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Equal to &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;5==3 returns false (0)&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;&amp;gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Greater than &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;5&amp;gt;3 returns true (1)&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;&amp;lt; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Less than &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;5&amp;lt;3 returns false (0)&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;!= &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Not equal to &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;5!=3 returns true(1)&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;&amp;gt;= &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Greater than or equal to &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;5&amp;gt;=3 returns true (1)&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;&amp;lt;= &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Less than or equal to &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 5&amp;lt;=3 return false (0)&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;&lt;br /&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;&lt;b&gt;Logical Operators:&lt;/b&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;&lt;br /&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;Logical operators are used to combine expressions containing relation operators. In C, there are 3 logical operators:&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;&lt;br /&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;&lt;b&gt;Operators &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Meaning of Operator&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Example&lt;o:p&gt;&lt;/o:p&gt;&lt;/b&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;&amp;amp;&amp;amp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;Logial AND&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;If c=5 and d=2 then,((c==5) &amp;amp;&amp;amp; (d&amp;gt;5)) returns false.&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;|| &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Logical OR &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;If c=5 and d=2 then, ((c==5) || (d&amp;gt;5)) returns true.&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;! &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Logical NOT &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;If c=5 then, !(c==5) returns false.&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;&lt;br /&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;&lt;i&gt;Explanation:&lt;/i&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;&lt;br /&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;For expression, ((c==5) &amp;amp;&amp;amp; (d&amp;gt;5)) to be true, both c==5 and d&amp;gt;5 should be true but, (d&amp;gt;5) is false in the given example. So, the expression is false. For expression ((c==5) || (d&amp;gt;5)) to be true, either the expression should be true. Since, (c==5) is true. So, the expression is true. Since, expression (c==5) is true, !(c==5) is false.&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;&lt;br /&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;&lt;b&gt;Conditional Operator:&lt;/b&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;&lt;br /&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;Conditional operator takes three operands and consists of two symbols ? and : . Conditional operators are used for decision making in C. For example:&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;&lt;br /&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;c=(c&amp;gt;0)?10:-10;&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;If c is greater than 0, value of c will be 10 but, if c is less than 0, value of c will be -10.&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;&lt;br /&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;&lt;b&gt;Bitwise Operators:&lt;/b&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;&lt;br /&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;A bitwise operator works on each bit of data. Bitwise operators are used in bit level programming.&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;&lt;br /&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;&lt;b&gt;Operators &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;nbsp;Meaning of operators&lt;o:p&gt;&lt;/o:p&gt;&lt;/b&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;&amp;amp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;Bitwise AND&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;| &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Bitwise OR&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;^&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;  Bitwise exclusive OR&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;~&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;  Bitwise complement&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;&amp;lt;&amp;lt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;  Shift left&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;&amp;gt;&amp;gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;  Shift right&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;&lt;br /&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;Bitwise operator is advance topic in &amp;nbsp;programming . Learn more about bitwise operator in C programming.&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;&lt;br /&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;&lt;b&gt;Other Operators:&lt;/b&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;&lt;br /&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;&lt;u&gt;Comma Operator:&lt;o:p&gt;&lt;/o:p&gt;&lt;/u&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;Comma operators are used to link related expressions together. For example:&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;&lt;br /&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;int a,c=5,d;&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;The sizeof operator&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;It is a unary operator which is used in finding the size of data type, constant, arrays, structure etc. For example:&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;&lt;br /&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;#include &amp;lt;stdio.h&amp;gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;int main()&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;{&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;&amp;nbsp; &amp;nbsp; int a;&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;&amp;nbsp; &amp;nbsp; float b;&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;&amp;nbsp; &amp;nbsp; double c;&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;&amp;nbsp; &amp;nbsp; char d;&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;&amp;nbsp; &amp;nbsp; printf(&quot;Size of int=%d bytes\n&quot;,sizeof(a));&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;&amp;nbsp; &amp;nbsp; printf(&quot;Size of float=%d bytes\n&quot;,sizeof(b));&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;&amp;nbsp; &amp;nbsp; printf(&quot;Size of double=%d bytes\n&quot;,sizeof(c));&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;&amp;nbsp; &amp;nbsp; printf(&quot;Size of char=%d byte\n&quot;,sizeof(d));&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;&amp;nbsp; &amp;nbsp; return 0;&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;}&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;&lt;i&gt;Output:&lt;/i&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;&lt;br /&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;Size of int=4 bytes&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;Size of float=4 bytes&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;Size of double=8 bytes&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;Size of char=1 byte&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;&lt;br /&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;&lt;b&gt;Conditional operators (?:)&lt;/b&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;&lt;br /&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;Conditional operators are used in decision making in C programming, i.e, executes different statements according to test condition whether it is either true or false.&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;&lt;br /&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;Syntax of conditional operators:&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;conditional_expression?expression1:expression2&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;If the test condition is true, expression1 is returned and if false expression2 is returned.&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;&lt;br /&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;Example of conditional operator:&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;&lt;br /&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;#include &amp;lt;stdio.h&amp;gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;int main()&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;{&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;&amp;nbsp; &amp;nbsp;char feb;&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;&amp;nbsp; &amp;nbsp;int days;&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;&amp;nbsp; &amp;nbsp;printf(&quot;Enter l if the year is leap year otherwise enter 0: &quot;);&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;&amp;nbsp; &amp;nbsp;scanf(&quot;%c&quot;,&amp;amp;feb);&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;&amp;nbsp; &amp;nbsp;days=(feb==&#39;l&#39;)?29:28;&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;&amp;nbsp; &amp;nbsp;/*If test condition (feb==&#39;l&#39;) is true, days will be equal to 29. */&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;&amp;nbsp; &amp;nbsp;/*If test condition (feb==&#39;l&#39;) is false, days will be equal to 28. */&amp;nbsp;&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;&amp;nbsp; &amp;nbsp;printf(&quot;Number of days in February = %d&quot;,days);&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;&amp;nbsp; &amp;nbsp;return 0;&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;}&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;&lt;i&gt;Output:&lt;/i&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;&lt;br /&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;Enter l if the year is leap year otherwise enter n: l&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;Number of days in February = 29&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;Other operators such as &amp;amp;(reference operator), *(dereference operator) and -&amp;gt;(member selection) operator will be discussed in pointer chapter.&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;&lt;br /&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5109055197243893191/posts/default/8385563997536445966'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5109055197243893191/posts/default/8385563997536445966'/><link rel='alternate' type='text/html' href='http://www.sparajuli.com.np/2015/03/c-operators.html' title='C Programming - Operators'/><author><name>mlworld</name><uri>http://www.blogger.com/profile/01888181411965090399</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://3.bp.blogspot.com/-ho_SRlzj0HQ/VTNdHro_MYI/AAAAAAAAAfI/RDj6OhhJiCI/s72-c/operators_in_c.jpg" height="72" width="72"/><gd:extendedProperty name="commentSource" value="1"/><gd:extendedProperty name="commentModerationMode" value="FILTERED_POSTMOD"/></entry><entry><id>tag:blogger.com,1999:blog-5109055197243893191.post-6671853960689248393</id><published>2015-03-04T01:16:00.005+05:45</published><updated>2015-06-25T16:29:47.801+05:45</updated><category scheme="http://www.blogger.com/atom/ns#" term="c -programming"/><title type='text'>Data Type in C-Programming</title><content type='html'>&lt;div class=&quot;MsoNoSpacing&quot;&gt;&lt;br /&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;In C, variable(data) should be declared before it can be used in program. Data types are the keywords, which are used for assigning a type to a variable.&lt;/div&gt;&lt;div style=&quot;clear: left; display: inline !important; margin-bottom: 1em; margin-right: 1em; text-align: justify;&quot;&gt;&lt;a href=&quot;http://4.bp.blogspot.com/-9_BKXZIQ244/VTNeFBig6aI/AAAAAAAAAfQ/4Bwb2H0esFk/s1600/datatypes_in_c.jpg&quot; imageanchor=&quot;1&quot; style=&quot;clear: left; display: inline !important; margin-bottom: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;http://4.bp.blogspot.com/-9_BKXZIQ244/VTNeFBig6aI/AAAAAAAAAfQ/4Bwb2H0esFk/s1600/datatypes_in_c.jpg&quot; /&gt;&lt;/a&gt;&lt;a href=&quot;http://4.bp.blogspot.com/-9_BKXZIQ244/VTNeFBig6aI/AAAAAAAAAfQ/4Bwb2H0esFk/s1600/datatypes_in_c.jpg&quot; imageanchor=&quot;1&quot; style=&quot;clear: left; display: inline !important; margin-bottom: 1em; margin-right: 1em; text-align: center;&quot;&gt;&lt;br /&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;span style=&quot;color: black;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;/a&gt;&lt;/div&gt;&lt;b&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;b&gt;Data types in C:&lt;/b&gt;&lt;/div&gt;&lt;/b&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;br /&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;b&gt;Fundamental Data Types:&lt;/b&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;Integer types&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;Floating Type&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;Character types&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;b&gt;Derived Data Types:&lt;/b&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;Arrays&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;Pointers&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;Structures&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;Enumeration&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;br /&gt;&lt;/div&gt;&lt;b&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;b&gt;Syntax for declaration of a variable:&lt;/b&gt;&lt;/div&gt;&lt;/b&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&amp;nbsp; &amp;nbsp;data_type variable_name;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;For e.g:&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&amp;nbsp; &amp;nbsp;int book;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;br /&gt;&lt;/div&gt;&lt;b&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;b&gt;&lt;i&gt;Integer data types:&lt;/i&gt;&lt;/b&gt;&lt;/div&gt;&lt;/b&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;br /&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;Keyword int is used for declaring the variable with integer type. For example:&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;br /&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;int var1;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;br /&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;Here, var1 is a variable of type integer.&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;br /&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;The size of int is either 2 bytes(In older PC&#39;s) or 4 bytes. If you consider an integer having size of 4 byte( equal to 32 bits), it can take 232 distinct states as: -231,-231+1, ...,-2, -1, 0, 1, 2, ..., 231-2, 231-1&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;br /&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;Similarly, int of 2 bytes, it can take 216 distinct states from -215 to 215-1. If you try to store larger number than 231-1, i.e,+2147483647 and smaller number than -231, i.e, -2147483648, &amp;nbsp;program will not run correctly.&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;br /&gt;&lt;/div&gt;&lt;b&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;b&gt;&lt;i&gt;Floating types:&lt;/i&gt;&lt;/b&gt;&lt;/div&gt;&lt;/b&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;br /&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;Variables of floating types can hold real values(numbers) such as: 2.34, -9.382 etc. Keywords either float or double is used for declaring floating type variable. For example:&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;br /&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;float var2;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;double var3;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;Here, both var2 and var3 are floating type variables.&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;In C, floating values can be represented in exponential form as well. For example:&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;br /&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;float var3=22.442e2;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;br /&gt;&lt;/div&gt;&lt;b&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;b&gt;Difference between float and double:&lt;/b&gt;&lt;/div&gt;&lt;/b&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;br /&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;Generally the size of float(Single precision float data type) is 4 bytes and that of double(Double precision float data type) is 8 bytes. Floating point variables has a precision of 6 digits whereas the the precision of double is 14 digits.&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;br /&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;Note: Precision describes the number of significant decimal places that a floating values carries.&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;br /&gt;&lt;/div&gt;&lt;b&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;b&gt;&lt;i&gt;Character types:&lt;/i&gt;&lt;/b&gt;&lt;/div&gt;&lt;/b&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;br /&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;Keyword char is used for declaring the variable of character type. For example:&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;char var4=&#39;h&#39;;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;br /&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;Here, var4 is a variable of type character which is storing a character &#39;h&#39;.&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;The size of char is 1 byte. The character data type consists of ASCII characters. Each character is given a specific value. For example:&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;br /&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;For, &#39;a&#39;, value =97&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;For, &#39;b&#39;, value=98&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;For, &#39;A&#39;, value=65&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;For, &#39;&amp;amp;&#39;, value=33&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;For, &#39;2&#39;, value=49&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;Here is the list of all ASCII characters in C language.&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;br /&gt;&lt;/div&gt;&lt;b&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;b&gt;Qualifiers:&lt;/b&gt;&lt;/div&gt;&lt;/b&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;Qualifiers alters the meaning of base data types to yield a new data type.&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;br /&gt;&lt;/div&gt;&lt;b&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;b&gt;&lt;i&gt;Size qualifiers:&lt;/i&gt;&lt;/b&gt;&lt;/div&gt;&lt;/b&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;br /&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;Size qualifiers alters the size of basic data type. The keywords long and short are two size qualifiers. For example:&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;br /&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;long int i;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;br /&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;The size of int is either 2 bytes or 4 bytes but, when long keyword is used, that variable will be either 4 bytes of 8 bytes. Learn more about long keyword in C programming. If the larger size of &amp;nbsp;variable is not needed then, short keyword can be used in similar manner as long keyword.&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;br /&gt;&lt;/div&gt;&lt;b&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;b&gt;&lt;i&gt;Sign qualifiers:&lt;/i&gt;&lt;/b&gt;&lt;/div&gt;&lt;/b&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;br /&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;Whether a variable can hold only positive value or both values is specified by sign qualifiers. Keywords signed and unsigned are used for sign qualifiers.&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;br /&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;unsigned int a;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;// unsigned variable can hold zero and positive values only.&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;It is not necessary to define variable using keyword signed because, a variable is signed by default. Sign qualifiers can be applied to only int and char data types. For a int variable of size 4 bytes it can hold data from -231 to 231-1 but, if that variable is defined unsigned, it can hold data from 0 to 232 -1.&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;br /&gt;&lt;/div&gt;&lt;b&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;b&gt;&lt;i&gt;Constant qualifiers:&lt;/i&gt;&lt;/b&gt;&lt;/div&gt;&lt;/b&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;br /&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;Constant qualifiers can be declared with keyword const. An object declared by const cannot be modified.&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;const int p=20;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;The value of p cannot be changed in the program.&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;br /&gt;&lt;/div&gt;&lt;b&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;b&gt;&lt;i&gt;Volatile qualifiers:&lt;/i&gt;&lt;/b&gt;&lt;/div&gt;&lt;/b&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;A variable should be declared volatile whenever its value can be changed by some external sources outside program. Keyword volatile is used to indicate volatile variable.&lt;/div&gt;&lt;br /&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;&lt;div&gt;&lt;script async=&quot;&quot; src=&quot;//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js&quot;&gt;&lt;/script&gt;&lt;!-- right bar last --&gt;&lt;br /&gt;&lt;ins class=&quot;adsbygoogle&quot; data-ad-client=&quot;ca-pub-6017907416695839&quot; data-ad-format=&quot;auto&quot; data-ad-slot=&quot;8291794906&quot; style=&quot;display: block;&quot;&gt;&lt;/ins&gt;&lt;script&gt;(adsbygoogle = window.adsbygoogle || []).push({}); &lt;/script&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;&lt;br /&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5109055197243893191/posts/default/6671853960689248393'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5109055197243893191/posts/default/6671853960689248393'/><link rel='alternate' type='text/html' href='http://www.sparajuli.com.np/2015/03/data-type-in-c.html' title='Data Type in C-Programming'/><author><name>mlworld</name><uri>http://www.blogger.com/profile/01888181411965090399</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://4.bp.blogspot.com/-9_BKXZIQ244/VTNeFBig6aI/AAAAAAAAAfQ/4Bwb2H0esFk/s72-c/datatypes_in_c.jpg" height="72" width="72"/><gd:extendedProperty name="commentSource" value="1"/><gd:extendedProperty name="commentModerationMode" value="FILTERED_POSTMOD"/></entry><entry><id>tag:blogger.com,1999:blog-5109055197243893191.post-3160112228600987498</id><published>2015-03-04T01:10:00.001+05:45</published><updated>2015-05-31T18:23:30.802+05:45</updated><category scheme="http://www.blogger.com/atom/ns#" term="c -programming"/><title type='text'>C-Programming Variables and Constants</title><content type='html'>&lt;div class=&quot;MsoNoSpacing&quot;&gt;&lt;b&gt;&lt;span lang=&quot;EN&quot;&gt;Variables:&lt;/span&gt;&lt;/b&gt;&lt;br /&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;b&gt;&lt;span lang=&quot;EN&quot;&gt;&lt;a href=&quot;http://4.bp.blogspot.com/-l1tqld4ZEII/VTNgSEFjOdI/AAAAAAAAAfs/cYAQ9guySzY/s1600/variables_in_c.jpg&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;160&quot; src=&quot;http://4.bp.blogspot.com/-l1tqld4ZEII/VTNgSEFjOdI/AAAAAAAAAfs/cYAQ9guySzY/s1600/variables_in_c.jpg&quot; width=&quot;320&quot; /&gt;&lt;/a&gt;&lt;/span&gt;&lt;/b&gt;&lt;/div&gt;&lt;b&gt;&lt;span lang=&quot;EN&quot;&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/b&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;&lt;br /&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;&lt;span lang=&quot;EN&quot;&gt;Variables are memory location in computer&#39;s memory to store data. To indicate the memory location, each variable should be given a unique name called identifier. Variable names are just the symbolic representation of a memory location. Examples of variable name: sum, car, count etc.&lt;/span&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;&lt;span lang=&quot;EN&quot;&gt;int num;&lt;/span&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;&lt;span lang=&quot;EN&quot;&gt;Here, num is a variable of integer type.&lt;/span&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;&lt;b&gt;&lt;span lang=&quot;EN&quot;&gt;Rules for writing variable name in C:&lt;/span&gt;&lt;/b&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;&lt;br /&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;&lt;span lang=&quot;EN&quot;&gt;Variable name can be composed of letters (both uppercase and lowercase letters), digits and underscore &#39;_&#39; only.&lt;/span&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;&lt;span lang=&quot;EN&quot;&gt;The first letter of a variable should be either a letter or an underscore. But, it is discouraged to start variable name with an underscore though it is legal. It is because, variable name that starts with underscore can conflict with system names and compiler may complain.&lt;/span&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;&lt;span lang=&quot;EN&quot;&gt;There is no rule for the length of length of a variable. However, the first 31 characters of&amp;nbsp; a variable are discriminated by the compiler. So, the first 31 letters of two variables in a program should be different.&lt;/span&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;&lt;span lang=&quot;EN&quot;&gt;In C programming, you have to declare variable before using it in the program.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;&lt;br /&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;&lt;b&gt;&lt;span lang=&quot;EN&quot;&gt;Constants&lt;/span&gt;&lt;/b&gt;&lt;span lang=&quot;EN&quot;&gt;:&lt;/span&gt;&lt;b&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/b&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;&lt;br /&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;&lt;span lang=&quot;EN&quot;&gt;Constants are the terms that can&#39;t be changed during the execution of a program. For example: 1, 2.5, &quot;Programming is easy.&quot; etc. In C, constants can be classified as:&lt;/span&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;&lt;br /&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;&lt;b&gt;&lt;span lang=&quot;EN&quot;&gt;Integer constants:&lt;/span&gt;&lt;/b&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;&lt;br /&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;&lt;span lang=&quot;EN&quot;&gt;Integer constants are the numeric constants(constant associated with number) without any fractional part or exponential part. There are three types of integer constants in C language: decimal constant(base 10), octal constant(base 8) and hexadecimal constant(base 16) .&lt;/span&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;&lt;br /&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;&lt;span lang=&quot;EN&quot;&gt;Decimal digits: 0 1 2 3 4 5 6 7 8 9&lt;/span&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;&lt;br /&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;&lt;span lang=&quot;EN&quot;&gt;Octal digits: 0 1 2 3 4 5 6 7&lt;/span&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;&lt;br /&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;&lt;span lang=&quot;EN&quot;&gt;Hexadecimal digits: 0 1 2 3 4 5 6 7 8 9 A B C D E F.&lt;/span&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;&lt;br /&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;&lt;span lang=&quot;EN&quot;&gt;For example:&lt;/span&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;&lt;br /&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;&lt;span lang=&quot;EN&quot;&gt;Decimal constants: 0, -9, 22 etc&lt;/span&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;&lt;span lang=&quot;EN&quot;&gt;Octal constants: 021, 077, 033 etc&lt;/span&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;&lt;span lang=&quot;EN&quot;&gt;Hexadecimal constants: 0x7f, 0x2a, 0x521 etc&lt;/span&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;&lt;b&gt;&lt;span lang=&quot;EN&quot;&gt;Notes:&lt;/span&gt;&lt;/b&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;&lt;span lang=&quot;EN&quot;&gt;You can use small caps a, b, c, d, e, f instead of uppercase letters while writing a hexadecimal constant.&lt;/span&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;&lt;span lang=&quot;EN&quot;&gt;Every octal constant starts with 0 and hexadecimal constant starts with 0x in C programming.&lt;/span&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;&lt;u&gt;&lt;span lang=&quot;EN&quot;&gt;Floating-point constants:&lt;/span&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/u&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;&lt;span lang=&quot;EN&quot;&gt;Floating point constants are the numeric constants that has either fractional form or exponent form. For example:&lt;/span&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;&lt;span lang=&quot;EN&quot;&gt;-2.0&lt;/span&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;&lt;span lang=&quot;EN&quot;&gt;0.0000234&lt;/span&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;&lt;span lang=&quot;EN&quot;&gt;-0.22E-5&lt;/span&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;&lt;span lang=&quot;EN&quot;&gt;Note: Here, E-5 represents 10-5. Thus, -0.22E-5 = -0.0000022.&lt;/span&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;&lt;br /&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;&lt;b&gt;&lt;span lang=&quot;EN&quot;&gt;Character constants:&lt;/span&gt;&lt;/b&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;&lt;br /&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;&lt;span lang=&quot;EN&quot;&gt;Character constants are the constant which use single quotation around characters. For example: &#39;a&#39;, &#39;l&#39;, &#39;m&#39;, &#39;F&#39; etc.&lt;/span&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;&lt;b&gt;&lt;span lang=&quot;EN&quot;&gt;Escape Sequences:&lt;/span&gt;&lt;/b&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;&lt;br /&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;&lt;span lang=&quot;EN&quot;&gt;Sometimes, it is necessary to use newline(enter), tab, quotation mark etc. in the program which either cannot be typed or has special meaning in C programming. In such cases, escape sequence are used. For example: \n is used for newline. The backslash( \ ) causes &quot;escape&quot; from the normal way the characters are interpreted by the compiler.&lt;/span&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;&lt;br /&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;&lt;i&gt;&lt;u&gt;&lt;span lang=&quot;EN&quot;&gt;Escape Sequences:&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/u&gt;&lt;/i&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;&lt;br /&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;&lt;b&gt;&lt;span lang=&quot;EN&quot;&gt;Escape Sequences&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Character&lt;/span&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/b&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;&lt;span lang=&quot;EN&quot;&gt;\b &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Backspace&lt;/span&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;&lt;span lang=&quot;EN&quot;&gt;\f &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Form feed&lt;/span&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;&lt;span lang=&quot;EN&quot;&gt;\n &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Newline&lt;/span&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;&lt;span lang=&quot;EN&quot;&gt;\r &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Return&lt;/span&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;&lt;span lang=&quot;EN&quot;&gt;\t &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Horizontal tab&lt;/span&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;&lt;span lang=&quot;EN&quot;&gt;\v &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Vertical tab&lt;/span&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;&lt;span lang=&quot;EN&quot;&gt;\\ &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Backslash&lt;/span&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;&lt;span lang=&quot;EN&quot;&gt;\&#39; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Single quotation mark&lt;/span&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;&lt;span lang=&quot;EN&quot;&gt;\&quot; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Double quotation mark&lt;/span&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;&lt;span lang=&quot;EN&quot;&gt;\? &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Question mark&lt;/span&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;&lt;span lang=&quot;EN&quot;&gt;\0 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Null character&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;&lt;span lang=&quot;EN&quot;&gt;\a &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; bell(sound)&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;&lt;br /&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;&lt;b&gt;&lt;span lang=&quot;EN&quot;&gt;String constants:&lt;/span&gt;&lt;/b&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;&lt;br /&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;&lt;span lang=&quot;EN&quot;&gt;String constants are the constants which are enclosed in a pair of double-quote marks. For example:&lt;/span&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;&lt;br /&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;&lt;span lang=&quot;EN&quot;&gt;&quot;good&quot; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;//string constant&lt;/span&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;&lt;span lang=&quot;EN&quot;&gt;&quot;&quot;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; //null string constant&lt;/span&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;&lt;span lang=&quot;EN&quot;&gt;&quot;&amp;nbsp;&amp;nbsp; &quot;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; //string constant of three white space&lt;/span&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;&lt;span lang=&quot;EN&quot;&gt;&quot;x&quot;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; //string constant having single character.&lt;/span&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;&lt;span lang=&quot;EN&quot;&gt;&quot;Earth is round\n&quot; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;//prints string with newline&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;&lt;br /&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;&lt;b&gt;&lt;span lang=&quot;EN&quot;&gt;Enumeration constants:&lt;/span&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/b&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;&lt;br /&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;&lt;span lang=&quot;EN&quot;&gt;Keyword enum is used to declare enumeration types. For example:&lt;/span&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;&lt;br /&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;&lt;span lang=&quot;EN&quot;&gt;enum color {yellow, green, black, white};&lt;/span&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;&lt;br /&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;&lt;span lang=&quot;EN&quot;&gt;Here, the variable name is color and yellow, green, black and white are the enumeration constants having value 0, 1, 2 and 3 respectively by default.&lt;/span&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;&lt;br /&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5109055197243893191/posts/default/3160112228600987498'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5109055197243893191/posts/default/3160112228600987498'/><link rel='alternate' type='text/html' href='http://www.sparajuli.com.np/2015/03/c-variables-and-constants.html' title='C-Programming Variables and Constants'/><author><name>mlworld</name><uri>http://www.blogger.com/profile/01888181411965090399</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://4.bp.blogspot.com/-l1tqld4ZEII/VTNgSEFjOdI/AAAAAAAAAfs/cYAQ9guySzY/s72-c/variables_in_c.jpg" height="72" width="72"/><gd:extendedProperty name="commentSource" value="1"/><gd:extendedProperty name="commentModerationMode" value="FILTERED_POSTMOD"/></entry><entry><id>tag:blogger.com,1999:blog-5109055197243893191.post-423104122215742975</id><published>2015-03-04T01:06:00.001+05:45</published><updated>2015-04-19T13:49:05.314+05:45</updated><category scheme="http://www.blogger.com/atom/ns#" term="c -programming"/><title type='text'>Learn C programming From base to Top</title><content type='html'>&lt;div class=&quot;MsoNoSpacing&quot;&gt;&lt;b&gt;Introduction:&lt;o:p&gt;&lt;/o:p&gt;&lt;/b&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;&lt;br /&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;C programming is a popular computer programming language which is widely used for system and application software. Despite being fairly old programming language, C programming is widely used because of its efficiency and control. This tutorial is targeted for beginners who does not have any prior knowledge or have very little knowledge of computer programming. All basic features of C programming language are included in detail with explanation to give you solid platform to understand C programming.&lt;br /&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;a href=&quot;http://3.bp.blogspot.com/-B1H926EpmBY/VTNhaHOhFRI/AAAAAAAAAf8/0gHGKsLYPPE/s1600/C-programming.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;http://3.bp.blogspot.com/-B1H926EpmBY/VTNhaHOhFRI/AAAAAAAAAf8/0gHGKsLYPPE/s1600/C-programming.png&quot; height=&quot;320&quot; width=&quot;320&quot; /&gt;&lt;/a&gt;&lt;/div&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;&lt;br /&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;&lt;b&gt;Getting Started With C ....&lt;o:p&gt;&lt;/o:p&gt;&lt;/b&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;&lt;br /&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;In order to run a C program, you need a compiler. Compiler change source code(code written by programmer) to object code(code that computer understands) and creates executable file. There are many free and professional compilers available.There are many compilers available such as Netbeans,Eclipse IDE ,DEV C++,TURBO C++&amp;nbsp;etc. All the examples here are tested and verified in DEV C++ compiler.&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;Lets Begin With:&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;&lt;a href=&quot;http://genchallenge.blogspot.com/2015/03/keyword-and-identifiers-in-c.html&quot;&gt;1.Keywords And Identifiers:&lt;/a&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;2.&lt;a href=&quot;http://genchallenge.blogspot.com/2015/03/data-type-in-c.html&quot;&gt;Data Types&lt;/a&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;&lt;a href=&quot;http://genchallenge.blogspot.com/2015/03/c-variables-and-constants.html&quot;&gt;3.Variables and Constants&lt;/a&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;4.&lt;a href=&quot;http://genchallenge.blogspot.com/2015/03/c-operators.html&quot;&gt;Operators&lt;/a&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;&lt;br /&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;&lt;b&gt;Character set:&lt;o:p&gt;&lt;/o:p&gt;&lt;/b&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;Character set are the set of alphabets, letters and some special characters that are valid in C language.&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;&lt;u&gt;Alphabets:&amp;nbsp;&lt;o:p&gt;&lt;/o:p&gt;&lt;/u&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;&lt;br /&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;Uppercase: A B C &amp;nbsp;.................................... &amp;nbsp;X Y Z&amp;nbsp;&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;&lt;br /&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;Lowercase: a b c &amp;nbsp;...................................... &amp;nbsp;x y z&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;&lt;br /&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;&lt;u&gt;Digits:&lt;o:p&gt;&lt;/o:p&gt;&lt;/u&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;&lt;br /&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;0 1 2 3 4 5 6 &amp;nbsp;8 9&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;&lt;br /&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;&lt;u&gt;Special Characters:&lt;o:p&gt;&lt;/o:p&gt;&lt;/u&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;&lt;br /&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;, &amp;nbsp; &amp;lt; &amp;nbsp; &amp;nbsp;&amp;gt; &amp;nbsp;. &amp;nbsp;_ &amp;nbsp;( &amp;nbsp;) &amp;nbsp;; &amp;nbsp;$ &amp;nbsp;: &amp;nbsp; % &amp;nbsp; [ &amp;nbsp;] &amp;nbsp;# &amp;nbsp;? &amp;nbsp;&#39; &amp;amp; &amp;nbsp;{ } &quot; ^ &amp;nbsp;! * / &amp;nbsp;| &amp;nbsp;- &amp;nbsp;\ &amp;nbsp;~ &amp;nbsp;+&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;&lt;br /&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;&lt;u&gt;White space Characters:&lt;o:p&gt;&lt;/o:p&gt;&lt;/u&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;&lt;br /&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;blank space, new line, horizontal tab, carriage return and form feed&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;&lt;div class=&quot;MsoNoSpacing&quot;&gt;&lt;br /&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5109055197243893191/posts/default/423104122215742975'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5109055197243893191/posts/default/423104122215742975'/><link rel='alternate' type='text/html' href='http://www.sparajuli.com.np/2015/03/learn-c-programming-from-base-to-top.html' title='Learn C programming From base to Top'/><author><name>mlworld</name><uri>http://www.blogger.com/profile/01888181411965090399</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://3.bp.blogspot.com/-B1H926EpmBY/VTNhaHOhFRI/AAAAAAAAAf8/0gHGKsLYPPE/s72-c/C-programming.png" height="72" width="72"/><gd:extendedProperty name="commentSource" value="1"/><gd:extendedProperty name="commentModerationMode" value="FILTERED_POSTMOD"/></entry><entry><id>tag:blogger.com,1999:blog-5109055197243893191.post-8064870179123275865</id><published>2014-11-16T20:16:00.003+05:45</published><updated>2015-10-26T19:02:51.078+05:45</updated><category scheme="http://www.blogger.com/atom/ns#" term="Downloads"/><title type='text'>HD Nepali Wallpapers App for Android</title><content type='html'>Nepali Wallpapers™ is the Nepali wallpapers application which includes HD Nepali wallpapers with other additional wallpapers of different categories. &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;br /&gt;&lt;a href=&quot;https://drive.google.com/open?id=0Bzbzs2W4O965cF9jWmpQeU1ZUm8&quot; target=&quot;_blank&quot;&gt;&lt;img alt=&quot; Download&quot; border=&quot;0&quot; height=&quot;63&quot; src=&quot;http://3.bp.blogspot.com/-4WaSDSqbcUg/VC0gaNfGOXI/AAAAAAAAAIg/U6gfZMjZSvU/s1600/download.gif&quot; width=&quot;200&quot; /&gt;&lt;/a&gt;&lt;a href=&quot;https://drive.google.com/open?id=0Bzbzs2W4O965cF9jWmpQeU1ZUm8&quot; target=&quot;_blank&quot;&gt;HD Nepali Wallpapers App For Android.&lt;/a&gt;&lt;br /&gt;&lt;h4&gt;&lt;i&gt;Screenshots:&lt;/i&gt;&lt;/h4&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;a href=&quot;http://4.bp.blogspot.com/-5D5QVvAPcHk/VGi08p5IYBI/AAAAAAAAANg/6Uyi1wWToBI/s1600/splash.png&quot; imageanchor=&quot;1&quot; style=&quot;clear: left; float: left; margin-bottom: 1em; margin-right: 1em;&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;img border=&quot;0&quot; height=&quot;320&quot; src=&quot;http://4.bp.blogspot.com/-5D5QVvAPcHk/VGi08p5IYBI/AAAAAAAAANg/6Uyi1wWToBI/s1600/splash.png&quot; width=&quot;179&quot; /&gt;&lt;/a&gt;&lt;/div&gt;&amp;nbsp; &amp;nbsp;&lt;a href=&quot;http://1.bp.blogspot.com/-whkpEIpq6o8/VGi0_zsdG8I/AAAAAAAAANo/bXGGDkN5ZDg/s1600/device-2014-11-16-162125.png&quot; imageanchor=&quot;1&quot; style=&quot;clear: right; display: inline !important; margin-bottom: 1em; margin-left: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;320&quot; src=&quot;http://1.bp.blogspot.com/-whkpEIpq6o8/VGi0_zsdG8I/AAAAAAAAANo/bXGGDkN5ZDg/s1600/device-2014-11-16-162125.png&quot; width=&quot;213&quot; /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5109055197243893191/posts/default/8064870179123275865'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5109055197243893191/posts/default/8064870179123275865'/><link rel='alternate' type='text/html' href='http://www.sparajuli.com.np/2014/11/hd-nepali-wallpapers-app-for-android.html' title='HD Nepali Wallpapers App for Android'/><author><name>mlworld</name><uri>http://www.blogger.com/profile/01888181411965090399</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://3.bp.blogspot.com/-4WaSDSqbcUg/VC0gaNfGOXI/AAAAAAAAAIg/U6gfZMjZSvU/s72-c/download.gif" height="72" width="72"/><gd:extendedProperty name="commentSource" value="1"/><gd:extendedProperty name="commentModerationMode" value="FILTERED_POSTMOD"/></entry><entry><id>tag:blogger.com,1999:blog-5109055197243893191.post-3240765649803435078</id><published>2014-11-07T23:51:00.001+05:45</published><updated>2015-05-06T14:04:42.968+05:45</updated><category scheme="http://www.blogger.com/atom/ns#" term="History"/><category scheme="http://www.blogger.com/atom/ns#" term="Tech"/><title type='text'>Generations Of Computer</title><content type='html'>&lt;div style=&quot;font-family: &#39;Open Sans&#39;, Calibri, Candara, Arial, sans-serif; font-size: 14px; line-height: 20px;&quot;&gt;The computers of electronic age are further divided into 5 generation on the basis of technology used by the computer. The different generations are:&lt;/div&gt;&lt;div style=&quot;font-family: &#39;Open Sans&#39;, Calibri, Candara, Arial, sans-serif; font-size: 14px; line-height: 20px;&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; i) First Generation of computer(1940-1956)&lt;/div&gt;&lt;div style=&quot;font-family: &#39;Open Sans&#39;, Calibri, Candara, Arial, sans-serif; font-size: 14px; line-height: 20px;&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; ii) Second generation of computers(1956-1963)&lt;/div&gt;&lt;div style=&quot;font-family: &#39;Open Sans&#39;, Calibri, Candara, Arial, sans-serif; font-size: 14px; line-height: 20px;&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; iii) Third generation of computers(1964-1971)&lt;/div&gt;&lt;div style=&quot;font-family: &#39;Open Sans&#39;, Calibri, Candara, Arial, sans-serif; font-size: 14px; line-height: 20px;&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; iv) Fourth generation of computers(1971-present)&lt;/div&gt;&lt;div style=&quot;font-family: &#39;Open Sans&#39;, Calibri, Candara, Arial, sans-serif; font-size: 14px; line-height: 20px;&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; v) Fifth generation of computers(Present and Beyond)&lt;/div&gt;&lt;div style=&quot;font-family: &#39;Open Sans&#39;, Calibri, Candara, Arial, sans-serif; font-size: 14px; line-height: 20px;&quot;&gt;&lt;/div&gt;&lt;h2 style=&quot;clear: both; color: #080808; font-family: &#39;Open Sans&#39;, Calibri, Candara, Arial, sans-serif; font-size: 26px; font-weight: 300; line-height: 40px; margin: 10px 0px; text-rendering: optimizelegibility;&quot;&gt;&lt;strong&gt;i) First Generation of Computers:&lt;/strong&gt;&lt;/h2&gt;&lt;div style=&quot;font-family: &#39;Open Sans&#39;, Calibri, Candara, Arial, sans-serif; font-size: 14px; line-height: 20px; padding-left: 30px;&quot;&gt;1) Technology used: Vacuum tube&lt;br /&gt;2) Operating speed: Millisecond range&lt;br /&gt;3) Programming language used: Machine language&lt;br /&gt;4) Memory used&lt;br /&gt;&lt;span style=&quot;padding-left: 30px;&quot;&gt;: Primary memory: Magnetic core memory&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;padding-left: 30px;&quot;&gt;: Secondary memory: Magnetic drum, Magnetic tape.&lt;/span&gt;&lt;br /&gt;5) I/O device:&lt;br /&gt;Punched card as input device, printing device as output device.&lt;br /&gt;6) Use: Simple mathematical calculation.&lt;br /&gt;7) Computers were extremely large in size, and they required special cooling system. e.g.: ENIVAC, EDVAC, UNIVAC, etc.&lt;/div&gt;&lt;table align=&quot;center&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot; class=&quot;tr-caption-container&quot; style=&quot;margin-left: auto; margin-right: auto; text-align: center;&quot;&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td style=&quot;text-align: center;&quot;&gt;&lt;a href=&quot;http://4.bp.blogspot.com/-mvx8qe1qG5A/VF0HewraGNI/AAAAAAAAAMw/jNCN2UfNrPw/s1600/UNIVAC_computer.jpg&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: auto; margin-right: auto; text-align: center;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;http://4.bp.blogspot.com/-mvx8qe1qG5A/VF0HewraGNI/AAAAAAAAAMw/jNCN2UfNrPw/s1600/UNIVAC_computer.jpg&quot; height=&quot;189&quot; width=&quot;200&quot; /&gt;&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td class=&quot;tr-caption&quot; style=&quot;text-align: center;&quot;&gt;1st generation computer(UNIVAC)&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;div style=&quot;font-family: &#39;Open Sans&#39;, Calibri, Candara, Arial, sans-serif; font-size: 14px; line-height: 20px; padding-left: 30px;&quot;&gt;&lt;br /&gt;&lt;/div&gt;&lt;div style=&quot;font-family: &#39;Open Sans&#39;, Calibri, Candara, Arial, sans-serif; font-size: 14px; line-height: 20px;&quot;&gt;&lt;/div&gt;&lt;h2 style=&quot;clear: both; color: #080808; font-family: &#39;Open Sans&#39;, Calibri, Candara, Arial, sans-serif; font-size: 26px; font-weight: 300; line-height: 40px; margin: 10px 0px; text-rendering: optimizelegibility;&quot;&gt;&lt;strong&gt;ii) Second Generation of Computers:&lt;a name=&#39;more&#39;&gt;&lt;/a&gt;&lt;/strong&gt;&lt;/h2&gt;&lt;div style=&quot;font-family: &#39;Open Sans&#39;, Calibri, Candara, Arial, sans-serif; font-size: 14px; line-height: 20px;&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;1) Technology used: Transistor&lt;/div&gt;&lt;div style=&quot;font-family: &#39;Open Sans&#39;, Calibri, Candara, Arial, sans-serif; font-size: 14px; line-height: 20px;&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;2) Operation speed: Micro second range (10-6 sec)&lt;/div&gt;&lt;div style=&quot;font-family: &#39;Open Sans&#39;, Calibri, Candara, Arial, sans-serif; font-size: 14px; line-height: 20px;&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;3) Programming language used: Assembly language&lt;/div&gt;&lt;div style=&quot;font-family: &#39;Open Sans&#39;, Calibri, Candara, Arial, sans-serif; font-size: 14px; line-height: 20px;&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;4) Memory used&lt;/div&gt;&lt;div style=&quot;font-family: &#39;Open Sans&#39;, Calibri, Candara, Arial, sans-serif; font-size: 14px; line-height: 20px;&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;: Primary memory: Magnetic core memory.&lt;/div&gt;&lt;div style=&quot;font-family: &#39;Open Sans&#39;, Calibri, Candara, Arial, sans-serif; font-size: 14px; line-height: 20px;&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;: Secondary memory: Magnetic drum, Magnetic tape.&lt;/div&gt;&lt;div style=&quot;font-family: &#39;Open Sans&#39;, Calibri, Candara, Arial, sans-serif; font-size: 14px; line-height: 20px;&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;5) I/O: Punched card as input device, Printer as output device&lt;/div&gt;&lt;div style=&quot;font-family: &#39;Open Sans&#39;, Calibri, Candara, Arial, sans-serif; font-size: 14px; line-height: 20px;&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;6) Use: Computers were used for complex scientific calculations.&lt;/div&gt;&lt;div style=&quot;font-family: &#39;Open Sans&#39;, Calibri, Candara, Arial, sans-serif; font-size: 14px; line-height: 20px;&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;7) The size, cost, power requirement, heat generation decreased compared to previous generation.&lt;/div&gt;&lt;div style=&quot;font-family: &#39;Open Sans&#39;, Calibri, Candara, Arial, sans-serif; font-size: 14px; line-height: 20px;&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;8) Processing speed, storage capacity, use of the computer increased compared to previous generation.&lt;/div&gt;&lt;div style=&quot;font-family: &#39;Open Sans&#39;, Calibri, Candara, Arial, sans-serif; font-size: 14px; line-height: 20px;&quot;&gt;E.g.: IBM 1620, IBM 7094, LEO MARK III, etc.&lt;/div&gt;&lt;table align=&quot;center&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot; class=&quot;tr-caption-container&quot; style=&quot;margin-left: auto; margin-right: auto; text-align: center;&quot;&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td style=&quot;text-align: center;&quot;&gt;&lt;a href=&quot;http://2.bp.blogspot.com/-pGgI__T_TV4/VF0IVnLu-ZI/AAAAAAAAAM4/1OxubY-Om0E/s1600/1620_R.jpg&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: auto; margin-right: auto;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;http://2.bp.blogspot.com/-pGgI__T_TV4/VF0IVnLu-ZI/AAAAAAAAAM4/1OxubY-Om0E/s1600/1620_R.jpg&quot; height=&quot;132&quot; width=&quot;200&quot; /&gt;&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td class=&quot;tr-caption&quot; style=&quot;text-align: center;&quot;&gt;IBM 1620&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;div style=&quot;font-family: &#39;Open Sans&#39;, Calibri, Candara, Arial, sans-serif; font-size: 14px; line-height: 20px;&quot;&gt;&lt;br /&gt;&lt;/div&gt;&lt;div style=&quot;font-family: &#39;Open Sans&#39;, Calibri, Candara, Arial, sans-serif; font-size: 14px; line-height: 20px;&quot;&gt;&lt;/div&gt;&lt;h4 style=&quot;clear: both; color: #080808; font-family: &#39;Open Sans&#39;, Calibri, Candara, Arial, sans-serif; font-size: 14px; font-weight: 300; line-height: 20px; margin: 10px 0px; text-rendering: optimizelegibility;&quot;&gt;&lt;b&gt;Advantages of transistor over vacuum tube:&lt;/b&gt;&lt;/h4&gt;&lt;div style=&quot;font-family: &#39;Open Sans&#39;, Calibri, Candara, Arial, sans-serif; font-size: 14px; line-height: 20px; padding-left: 30px;&quot;&gt;&amp;nbsp; &amp;nbsp;i) One transistor could replace one thousand vacuum tubes.&lt;/div&gt;&lt;div style=&quot;font-family: &#39;Open Sans&#39;, Calibri, Candara, Arial, sans-serif; font-size: 14px; line-height: 20px; padding-left: 30px;&quot;&gt;&amp;nbsp; ii) Size of a transistor is 1/200 th times of a vacuum tube.&lt;/div&gt;&lt;div style=&quot;font-family: &#39;Open Sans&#39;, Calibri, Candara, Arial, sans-serif; font-size: 14px; line-height: 20px; padding-left: 30px;&quot;&gt;&amp;nbsp;iii) The power requirement of a transistor is 1/20 th times of a vacuum tube.&lt;/div&gt;&lt;div style=&quot;font-family: &#39;Open Sans&#39;, Calibri, Candara, Arial, sans-serif; font-size: 14px; line-height: 20px; padding-left: 30px;&quot;&gt;&amp;nbsp;iv) Transistors are more reliable than vacuum tube.&lt;/div&gt;&lt;h2 style=&quot;clear: both; color: #080808; font-family: &#39;Open Sans&#39;, Calibri, Candara, Arial, sans-serif; font-size: 26px; font-weight: 300; line-height: 40px; margin: 10px 0px; text-rendering: optimizelegibility;&quot;&gt;&lt;strong&gt;iii) Third Generation of Computers:&lt;/strong&gt;&lt;/h2&gt;&lt;div style=&quot;font-family: &#39;Open Sans&#39;, Calibri, Candara, Arial, sans-serif; font-size: 14px; line-height: 20px; padding-left: 30px;&quot;&gt;i) Technology used: IC (Integrated Circuit)&lt;/div&gt;&lt;div style=&quot;font-family: &#39;Open Sans&#39;, Calibri, Candara, Arial, sans-serif; font-size: 14px; line-height: 20px; padding-left: 30px;&quot;&gt;ii) Operating speed: Nanosecond range (10 -9 sec)&lt;/div&gt;&lt;div style=&quot;font-family: &#39;Open Sans&#39;, Calibri, Candara, Arial, sans-serif; font-size: 14px; line-height: 20px; padding-left: 30px;&quot;&gt;iii) Programming language used: HLL (High Level Language)&lt;/div&gt;&lt;div style=&quot;font-family: &#39;Open Sans&#39;, Calibri, Candara, Arial, sans-serif; font-size: 14px; line-height: 20px; padding-left: 30px;&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Like FORTAN, COBOL, PASCAL, C, C++, etc.&lt;/div&gt;&lt;div style=&quot;font-family: &#39;Open Sans&#39;, Calibri, Candara, Arial, sans-serif; font-size: 14px; line-height: 20px; padding-left: 30px;&quot;&gt;iv) Memory used:&lt;/div&gt;&lt;div style=&quot;font-family: &#39;Open Sans&#39;, Calibri, Candara, Arial, sans-serif; font-size: 14px; line-height: 20px; padding-left: 30px;&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Primary memory: Semiconductor memory (silicon)&lt;/div&gt;&lt;div style=&quot;font-family: &#39;Open Sans&#39;, Calibri, Candara, Arial, sans-serif; font-size: 14px; line-height: 20px; padding-left: 30px;&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Secondary memory: Magnetic tape, Magnetic disk like floppy disk, hard disk, etc)&lt;/div&gt;&lt;div style=&quot;font-family: &#39;Open Sans&#39;, Calibri, Candara, Arial, sans-serif; font-size: 14px; line-height: 20px; padding-left: 30px;&quot;&gt;v) I/O device: Keyboard as input device, monitor as output device.&lt;/div&gt;&lt;div style=&quot;font-family: &#39;Open Sans&#39;, Calibri, Candara, Arial, sans-serif; font-size: 14px; line-height: 20px; padding-left: 30px;&quot;&gt;vi) Use: Computers were used for managing population census, bank, insurance company, etc.&lt;/div&gt;&lt;div style=&quot;font-family: &#39;Open Sans&#39;, Calibri, Candara, Arial, sans-serif; font-size: 14px; line-height: 20px; padding-left: 30px;&quot;&gt;vii) Concept of database was developed and used.&lt;/div&gt;&lt;div style=&quot;font-family: &#39;Open Sans&#39;, Calibri, Candara, Arial, sans-serif; font-size: 14px; line-height: 20px; padding-left: 30px;&quot;&gt;viii) Size, cost, power requirement, heat generation decreased compared to previous generations.&lt;/div&gt;&lt;div style=&quot;font-family: &#39;Open Sans&#39;, Calibri, Candara, Arial, sans-serif; font-size: 14px; line-height: 20px; padding-left: 30px;&quot;&gt;ix) Processing speed, storage capacity, use of the computer increased compared to previous generations.&lt;/div&gt;&lt;div style=&quot;font-family: &#39;Open Sans&#39;, Calibri, Candara, Arial, sans-serif; font-size: 14px; line-height: 20px; padding-left: 30px;&quot;&gt;E.g.: IBM 360 series, ICL 900 series, Honeywell 200 series, etc.&lt;/div&gt;&lt;table align=&quot;center&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot; class=&quot;tr-caption-container&quot; style=&quot;margin-left: auto; margin-right: auto; text-align: center;&quot;&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td style=&quot;text-align: center;&quot;&gt;&lt;a href=&quot;http://4.bp.blogspot.com/-5_PARaCtGPw/VF0Iy2pd8NI/AAAAAAAAANA/NoXX0Cnc71g/s1600/36091-museum-1.jpg&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: auto; margin-right: auto;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;http://4.bp.blogspot.com/-5_PARaCtGPw/VF0Iy2pd8NI/AAAAAAAAANA/NoXX0Cnc71g/s1600/36091-museum-1.jpg&quot; height=&quot;169&quot; width=&quot;200&quot; /&gt;&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td class=&quot;tr-caption&quot; style=&quot;text-align: center;&quot;&gt;IBM 360&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;div style=&quot;font-family: &#39;Open Sans&#39;, Calibri, Candara, Arial, sans-serif; font-size: 14px; line-height: 20px; padding-left: 30px;&quot;&gt;&lt;br /&gt;&lt;/div&gt;&lt;div style=&quot;clear: both; font-family: &#39;Open Sans&#39;; font-size: 10pt; line-height: 1.7; margin-bottom: 10px;&quot;&gt;&lt;br /&gt;&lt;/div&gt;&lt;h4 style=&quot;clear: both; color: #080808; font-family: &#39;Open Sans&#39;, Calibri, Candara, Arial, sans-serif; font-size: 14px; font-weight: 300; line-height: 20px; margin: 10px 0px; text-rendering: optimizelegibility;&quot;&gt;&lt;b&gt;IC and its types:&lt;/b&gt;&lt;/h4&gt;&lt;div style=&quot;font-family: &#39;Open Sans&#39;, Calibri, Candara, Arial, sans-serif; font-size: 14px; line-height: 20px; padding-left: 30px;&quot;&gt;IC is a small silicon chip which contains large number of electronic components like transistor, resistor, capacitor, etc.&lt;/div&gt;&lt;div style=&quot;font-family: &#39;Open Sans&#39;, Calibri, Candara, Arial, sans-serif; font-size: 14px; line-height: 20px; padding-left: 30px;&quot;&gt;&lt;i&gt;The process of creation of IC is called fabrication.&lt;/i&gt;&lt;/div&gt;&lt;div style=&quot;font-family: &#39;Open Sans&#39;, Calibri, Candara, Arial, sans-serif; font-size: 14px; line-height: 20px; padding-left: 30px;&quot;&gt;Types of IC on the basis of number of electronic components.&lt;/div&gt;&lt;div style=&quot;font-family: &#39;Open Sans&#39;, Calibri, Candara, Arial, sans-serif; font-size: 14px; line-height: 20px; padding-left: 30px;&quot;&gt;&amp;nbsp; &amp;nbsp; i) SSI (Small Scale Integration)&lt;/div&gt;&lt;div style=&quot;font-family: &#39;Open Sans&#39;, Calibri, Candara, Arial, sans-serif; font-size: 14px; line-height: 20px; padding-left: 30px;&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;(1-20 components)&lt;/div&gt;&lt;div style=&quot;font-family: &#39;Open Sans&#39;, Calibri, Candara, Arial, sans-serif; font-size: 14px; line-height: 20px; padding-left: 30px;&quot;&gt;&amp;nbsp; &amp;nbsp;ii) MSI (Medium Scale Integration)&lt;/div&gt;&lt;div style=&quot;font-family: &#39;Open Sans&#39;, Calibri, Candara, Arial, sans-serif; font-size: 14px; line-height: 20px; padding-left: 30px;&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;(21-100 components)&lt;/div&gt;&lt;div style=&quot;font-family: &#39;Open Sans&#39;, Calibri, Candara, Arial, sans-serif; font-size: 14px; line-height: 20px; padding-left: 30px;&quot;&gt;&amp;nbsp; iii) LSI (Large Scale Integration)&lt;/div&gt;&lt;div style=&quot;font-family: &#39;Open Sans&#39;, Calibri, Candara, Arial, sans-serif; font-size: 14px; line-height: 20px; padding-left: 30px;&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; (101-1000 components)&lt;/div&gt;&lt;div style=&quot;font-family: &#39;Open Sans&#39;, Calibri, Candara, Arial, sans-serif; font-size: 14px; line-height: 20px; padding-left: 30px;&quot;&gt;&amp;nbsp;iv) VLSI (Very Large Scale Integration)&lt;/div&gt;&lt;div style=&quot;font-family: &#39;Open Sans&#39;, Calibri, Candara, Arial, sans-serif; font-size: 14px; line-height: 20px; padding-left: 30px;&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; (1001-10000 components)&lt;/div&gt;&lt;div style=&quot;font-family: &#39;Open Sans&#39;, Calibri, Candara, Arial, sans-serif; font-size: 14px; line-height: 20px; padding-left: 30px;&quot;&gt;&amp;nbsp;v) ULSI ( Ultra Large Scale Integration)&lt;/div&gt;&lt;div style=&quot;font-family: &#39;Open Sans&#39;, Calibri, Candara, Arial, sans-serif; font-size: 14px; line-height: 20px; padding-left: 30px;&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; (More than 10000 components)&lt;/div&gt;&lt;h2 style=&quot;clear: both; color: #080808; font-family: &#39;Open Sans&#39;, Calibri, Candara, Arial, sans-serif; font-size: 26px; font-weight: 300; line-height: 40px; margin: 10px 0px; text-rendering: optimizelegibility;&quot;&gt;&lt;strong&gt;iv) Fourth Generation of Computers:&lt;/strong&gt;&lt;/h2&gt;&lt;div style=&quot;font-family: &#39;Open Sans&#39;, Calibri, Candara, Arial, sans-serif; font-size: 14px; line-height: 20px;&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;1) Technology used:- VLSI (or Microprocessor)&lt;/div&gt;&lt;div style=&quot;font-family: &#39;Open Sans&#39;, Calibri, Candara, Arial, sans-serif; font-size: 14px; line-height: 20px;&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;2) Operating speed:- Pico second range&lt;/div&gt;&lt;div style=&quot;font-family: &#39;Open Sans&#39;, Calibri, Candara, Arial, sans-serif; font-size: 14px; line-height: 20px;&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;3) Programming language used: 4GL (Problem Oriented Language)&lt;/div&gt;&lt;div style=&quot;font-family: &#39;Open Sans&#39;, Calibri, Candara, Arial, sans-serif; font-size: 14px; line-height: 20px;&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;4) Memory used:&lt;/div&gt;&lt;div style=&quot;font-family: &#39;Open Sans&#39;, Calibri, Candara, Arial, sans-serif; font-size: 14px; line-height: 20px;&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Primary: Semi-conductor memory&lt;/div&gt;&lt;div style=&quot;font-family: &#39;Open Sans&#39;, Calibri, Candara, Arial, sans-serif; font-size: 14px; line-height: 20px;&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Secondary: Magnetic tape, Magnetic Disk, Optical memory (CD/DVD/ Blu ray), Flash&lt;/div&gt;&lt;div style=&quot;font-family: &#39;Open Sans&#39;, Calibri, Candara, Arial, sans-serif; font-size: 14px; line-height: 20px;&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; memory(pen drive, memory card)&lt;/div&gt;&lt;div style=&quot;font-family: &#39;Open Sans&#39;, Calibri, Candara, Arial, sans-serif; font-size: 14px; line-height: 20px;&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 5) I/O device:&lt;/div&gt;&lt;div style=&quot;font-family: &#39;Open Sans&#39;, Calibri, Candara, Arial, sans-serif; font-size: 14px; line-height: 20px;&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Advanced I/O devices like mouse, touch screen, scanner, LCD, LED, color printer, etc are developed.&lt;/div&gt;&lt;div style=&quot;font-family: &#39;Open Sans&#39;, Calibri, Candara, Arial, sans-serif; font-size: 14px; line-height: 20px;&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 6) Use:&lt;/div&gt;&lt;div style=&quot;font-family: &#39;Open Sans&#39;, Calibri, Candara, Arial, sans-serif; font-size: 14px; line-height: 20px;&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Computers are used for different task in different areas like education, business, hospital, transportation, military, etc.&lt;/div&gt;&lt;div style=&quot;font-family: &#39;Open Sans&#39;, Calibri, Candara, Arial, sans-serif; font-size: 14px; line-height: 20px; padding-left: 30px;&quot;&gt;7) Microcomputers like desktop PC, laptop, notebook, etc, are developed.&lt;/div&gt;&lt;div style=&quot;font-family: &#39;Open Sans&#39;, Calibri, Candara, Arial, sans-serif; font-size: 14px; line-height: 20px; padding-left: 30px;&quot;&gt;8) The popular communication media like internet, email, mobile communication, etc were developed.&lt;/div&gt;&lt;div style=&quot;font-family: &#39;Open Sans&#39;, Calibri, Candara, Arial, sans-serif; font-size: 14px; line-height: 20px; padding-left: 30px;&quot;&gt;9) Advanced, user friendly, web based software, etc are developed.&lt;/div&gt;&lt;div style=&quot;font-family: &#39;Open Sans&#39;, Calibri, Candara, Arial, sans-serif; font-size: 14px; line-height: 20px; padding-left: 30px;&quot;&gt;10) Size, cost, power requirement, heat generation decreased compared to previous generation.&lt;/div&gt;&lt;div style=&quot;font-family: &#39;Open Sans&#39;, Calibri, Candara, Arial, sans-serif; font-size: 14px; line-height: 20px; padding-left: 30px;&quot;&gt;11) Operating speed, storage capacity, use of the computer increased compared to previous generation.&lt;/div&gt;&lt;div style=&quot;font-family: &#39;Open Sans&#39;, Calibri, Candara, Arial, sans-serif; font-size: 14px; line-height: 20px; padding-left: 30px;&quot;&gt;E.g.: IBM desktop PC, HP laptop, Acer notebook, Mac book, etc.&lt;/div&gt;&lt;table align=&quot;center&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot; class=&quot;tr-caption-container&quot; style=&quot;margin-left: auto; margin-right: auto; text-align: center;&quot;&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td style=&quot;text-align: center;&quot;&gt;&lt;a href=&quot;http://4.bp.blogspot.com/-V8qa_QFFClI/VF0JJoKW8aI/AAAAAAAAANI/kQzG6OdmA2g/s1600/download.jpg&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: auto; margin-right: auto;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;http://4.bp.blogspot.com/-V8qa_QFFClI/VF0JJoKW8aI/AAAAAAAAANI/kQzG6OdmA2g/s1600/download.jpg&quot; /&gt;&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td class=&quot;tr-caption&quot; style=&quot;text-align: center;&quot;&gt;MAC Book&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;div style=&quot;font-family: &#39;Open Sans&#39;, Calibri, Candara, Arial, sans-serif; font-size: 14px; line-height: 20px; padding-left: 30px;&quot;&gt;&lt;br /&gt;&lt;/div&gt;&lt;h2 style=&quot;clear: both; color: #080808; font-family: &#39;Open Sans&#39;, Calibri, Candara, Arial, sans-serif; font-size: 26px; font-weight: 300; line-height: 40px; margin: 10px 0px; text-rendering: optimizelegibility;&quot;&gt;&lt;strong&gt;v) Fifth Generation of Computers:&lt;/strong&gt;&lt;/h2&gt;&lt;div style=&quot;font-family: &#39;Open Sans&#39;, Calibri, Candara, Arial, sans-serif; font-size: 14px; line-height: 20px; padding-left: 30px;&quot;&gt;1) Technology to be used:- Bio-chip&lt;/div&gt;&lt;div style=&quot;font-family: &#39;Open Sans&#39;, Calibri, Candara, Arial, sans-serif; font-size: 14px; line-height: 20px; padding-left: 30px;&quot;&gt;2) Operating speed:- Femto second range&lt;/div&gt;&lt;div style=&quot;font-family: &#39;Open Sans&#39;, Calibri, Candara, Arial, sans-serif; font-size: 14px; line-height: 20px; padding-left: 30px;&quot;&gt;(10 -15 second) / TIPS&lt;/div&gt;&lt;div style=&quot;font-family: &#39;Open Sans&#39;, Calibri, Candara, Arial, sans-serif; font-size: 14px; line-height: 20px; padding-left: 30px;&quot;&gt;3) Programming language to be used:- Natural language&lt;/div&gt;&lt;div style=&quot;font-family: &#39;Open Sans&#39;, Calibri, Candara, Arial, sans-serif; font-size: 14px; line-height: 20px; padding-left: 30px;&quot;&gt;4) The computers will have AI.&lt;/div&gt;&lt;div style=&quot;font-family: &#39;Open Sans&#39;, Calibri, Candara, Arial, sans-serif; font-size: 14px; line-height: 20px; padding-left: 30px;&quot;&gt;5) The computers will be used in complex calculation where intelligence of the computer is required.&lt;/div&gt;&lt;div style=&quot;font-family: &#39;Open Sans&#39;, Calibri, Candara, Arial, sans-serif; font-size: 14px; line-height: 20px; padding-left: 30px;&quot;&gt;6) The computers will have parallel processing in full fledge.&lt;/div&gt;&lt;div style=&quot;font-family: &#39;Open Sans&#39;, Calibri, Candara, Arial, sans-serif; font-size: 14px; line-height: 20px; padding-left: 30px;&quot;&gt;7) The computers will be based on KIPS (Knowledge based Information Processing System).&lt;/div&gt;&lt;table align=&quot;center&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot; class=&quot;tr-caption-container&quot; style=&quot;margin-left: auto; margin-right: auto; text-align: center;&quot;&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td style=&quot;text-align: center;&quot;&gt;&lt;a href=&quot;http://2.bp.blogspot.com/-PswDm3P03zw/VF0J1YGSIbI/AAAAAAAAANQ/AlceSed4uiY/s1600/download%2B(1).jpg&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: auto; margin-right: auto;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;http://2.bp.blogspot.com/-PswDm3P03zw/VF0J1YGSIbI/AAAAAAAAANQ/AlceSed4uiY/s1600/download%2B(1).jpg&quot; /&gt;&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td class=&quot;tr-caption&quot; style=&quot;text-align: center;&quot;&gt;Fifth generation computer&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;div style=&quot;font-family: &#39;Open Sans&#39;, Calibri, Candara, Arial, sans-serif; font-size: 14px; line-height: 20px; padding-left: 30px;&quot;&gt;&lt;br /&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5109055197243893191/posts/default/3240765649803435078'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5109055197243893191/posts/default/3240765649803435078'/><link rel='alternate' type='text/html' href='http://www.sparajuli.com.np/2014/11/generations-of-computer.html' title='Generations Of Computer'/><author><name>mlworld</name><uri>http://www.blogger.com/profile/01888181411965090399</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://4.bp.blogspot.com/-mvx8qe1qG5A/VF0HewraGNI/AAAAAAAAAMw/jNCN2UfNrPw/s72-c/UNIVAC_computer.jpg" height="72" width="72"/><gd:extendedProperty name="commentSource" value="1"/><gd:extendedProperty name="commentModerationMode" value="FILTERED_POSTMOD"/></entry><entry><id>tag:blogger.com,1999:blog-5109055197243893191.post-6799450821492393707</id><published>2014-11-01T19:57:00.002+05:45</published><updated>2015-05-31T18:19:59.649+05:45</updated><category scheme="http://www.blogger.com/atom/ns#" term="Tutorials"/><title type='text'>How to check internet speed online</title><content type='html'>&lt;h4&gt;►Check your exact internet speed using online website with in a minute&lt;/h4&gt;.Learn to check your exact internet speed &amp;nbsp;online watching this video:&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;object height=&quot;340&quot; width=&quot;600&quot;&gt;&lt;param name=&quot;movie&quot; value=&quot;http://www.youtube.com/v/pdKdGhF3nFU&amp;theme=light&amp;showinfo=0&amp;modestbranding=1&amp;autohide=1&quot;&gt;&lt;/param&gt;&lt;param name=&quot;allowFullScreen&quot; value=&quot;true&quot;&gt;&lt;/param&gt;&lt;param name=&quot;allowscriptaccess&quot; value=&quot;always&quot;&gt;&lt;/param&gt;&lt;embed src=&quot;http://www.youtube.com/v/pdKdGhF3nFU&amp;theme=light&amp;showinfo=0&amp;modestbranding=1&amp;autohide=1&quot; type=&quot;application/x-shockwave-flash&quot; allowfullscreen=&quot;true&quot; width=&quot;600&quot; height=&quot;340&quot; allowscriptaccess=&quot;always&quot;&gt;&lt;/embed&gt;&lt;/object&gt;&lt;br /&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;a href=&quot;http://2.bp.blogspot.com/-tHjb5gCseAw/VTNiUxVrNgI/AAAAAAAAAgE/-s4zpQKX4Po/s1600/check_internet_speed.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;235&quot; src=&quot;http://2.bp.blogspot.com/-tHjb5gCseAw/VTNiUxVrNgI/AAAAAAAAAgE/-s4zpQKX4Po/s1600/check_internet_speed.png&quot; width=&quot;400&quot; /&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5109055197243893191/posts/default/6799450821492393707'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5109055197243893191/posts/default/6799450821492393707'/><link rel='alternate' type='text/html' href='http://www.sparajuli.com.np/2014/11/how-to-check-internet-speed-online.html' title='How to check internet speed online'/><author><name>mlworld</name><uri>http://www.blogger.com/profile/01888181411965090399</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://2.bp.blogspot.com/-tHjb5gCseAw/VTNiUxVrNgI/AAAAAAAAAgE/-s4zpQKX4Po/s72-c/check_internet_speed.png" height="72" width="72"/><gd:extendedProperty name="commentSource" value="1"/><gd:extendedProperty name="commentModerationMode" value="FILTERED_POSTMOD"/></entry><entry><id>tag:blogger.com,1999:blog-5109055197243893191.post-3699246414528100370</id><published>2014-10-29T00:17:00.003+05:45</published><updated>2015-08-30T19:11:05.669+05:45</updated><category scheme="http://www.blogger.com/atom/ns#" term="Tech"/><title type='text'>Roll Laptop(Rolltop)- Next Generation Laptop</title><content type='html'>►Look at this amazing discovery.&lt;br /&gt;&lt;br /&gt;Do you believe it?&lt;br /&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;a href=&quot;http://3.bp.blogspot.com/-qxOjwLYaick/VTNlVyfgYlI/AAAAAAAAAgs/e6kNqJ71B9U/s1600/next_generation%2Bcomputer.jpg&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;355&quot; src=&quot;http://3.bp.blogspot.com/-qxOjwLYaick/VTNlVyfgYlI/AAAAAAAAAgs/e6kNqJ71B9U/s1600/next_generation%2Bcomputer.jpg&quot; width=&quot;400&quot; /&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;&lt;br /&gt;&lt;style&gt;.embed-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; max-width: 100%; } .embed-container iframe, .embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }&lt;/style&gt;&lt;br /&gt;&lt;div class=&quot;embed-container&quot;&gt;&lt;iframe allowfullscreen=&quot;&quot; frameborder=&quot;0&quot; src=&quot;https://www.youtube.com/embed/sYtgZyZGO2M?&amp;amp;autoplay=0&amp;amp;rel=0&amp;amp;theme=light&amp;amp;showinfo=0&amp;amp;modestbranding=1&amp;amp;hd=1&amp;amp;autohide=1&quot;&gt;&lt;/iframe&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5109055197243893191/posts/default/3699246414528100370'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5109055197243893191/posts/default/3699246414528100370'/><link rel='alternate' type='text/html' href='http://www.sparajuli.com.np/2014/10/roll-laptoprolltop.html' title='Roll Laptop(Rolltop)- Next Generation Laptop'/><author><name>mlworld</name><uri>http://www.blogger.com/profile/01888181411965090399</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://3.bp.blogspot.com/-qxOjwLYaick/VTNlVyfgYlI/AAAAAAAAAgs/e6kNqJ71B9U/s72-c/next_generation%2Bcomputer.jpg" height="72" width="72"/><gd:extendedProperty name="commentSource" value="1"/><gd:extendedProperty name="commentModerationMode" value="FILTERED_POSTMOD"/></entry><entry><id>tag:blogger.com,1999:blog-5109055197243893191.post-4601951006517014737</id><published>2014-10-02T15:44:00.001+05:45</published><updated>2015-10-26T19:01:53.646+05:45</updated><category scheme="http://www.blogger.com/atom/ns#" term="Downloads"/><title type='text'>Download Flashlight app for Android free</title><content type='html'>►Download latest led flashlight App for android&lt;br /&gt;&lt;br /&gt;It has attractive view.It is easy to use and uses your camera flash to produce high frequency flashlight.&lt;br /&gt;It runs in android device version having more than 1.6 and should have camera flash.We hope you will love our app and it meets your need.Don&#39;t forget to send feedback in comment&lt;br /&gt;section.&lt;br /&gt;Click button to get the download link&lt;br /&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;a href=&quot;https://drive.google.com/open?id=0Bzbzs2W4O965dzZheDhJRWdDeTg&quot; target=&quot;_blank&quot;&gt;&lt;img alt=&quot; Download Flashlight App&quot; border=&quot;0&quot; height=&quot;101&quot; src=&quot;http://3.bp.blogspot.com/-4WaSDSqbcUg/VC0gaNfGOXI/AAAAAAAAAIc/SlTD4cRFnlM/s1600/download.gif&quot; width=&quot;320&quot; /&gt;&lt;/a&gt;&lt;/div&gt;&lt;h4&gt;&lt;i&gt;Screenshots&lt;/i&gt;:&lt;/h4&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;a href=&quot;http://1.bp.blogspot.com/-wjnna-Ofa5w/VC0eVmnSlLI/AAAAAAAAAIA/Iz-9kOjGefU/s1600/8c920c5f-3d4e-45ea-9dd2-70de637e8f5f.jpg&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;200&quot; src=&quot;http://1.bp.blogspot.com/-wjnna-Ofa5w/VC0eVmnSlLI/AAAAAAAAAIA/Iz-9kOjGefU/s1600/8c920c5f-3d4e-45ea-9dd2-70de637e8f5f.jpg&quot; width=&quot;200&quot; /&gt;&lt;/a&gt;&lt;/div&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;a href=&quot;http://1.bp.blogspot.com/-tEhh6XIEf2A/VC0eahBqAnI/AAAAAAAAAIQ/zcBwqHoEgW8/s1600/btn_switch_on.png&quot; imageanchor=&quot;1&quot; style=&quot;clear: left; float: left; margin-bottom: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;320&quot; src=&quot;http://1.bp.blogspot.com/-tEhh6XIEf2A/VC0eahBqAnI/AAAAAAAAAIQ/zcBwqHoEgW8/s1600/btn_switch_on.png&quot; width=&quot;213&quot; /&gt;&lt;/a&gt;&lt;a href=&quot;http://1.bp.blogspot.com/-gMM7831y1Vc/VC0eZe5UNaI/AAAAAAAAAII/bUglSFKvlaw/s1600/btn_switch_off.png&quot; imageanchor=&quot;1&quot; style=&quot;clear: right; float: right; margin-bottom: 1em; margin-left: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;320&quot; src=&quot;http://1.bp.blogspot.com/-gMM7831y1Vc/VC0eZe5UNaI/AAAAAAAAAII/bUglSFKvlaw/s1600/btn_switch_off.png&quot; width=&quot;213&quot; /&gt;&lt;/a&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5109055197243893191/posts/default/4601951006517014737'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5109055197243893191/posts/default/4601951006517014737'/><link rel='alternate' type='text/html' href='http://www.sparajuli.com.np/2014/10/download-flashlight-app.html' title='Download Flashlight app for Android free'/><author><name>mlworld</name><uri>http://www.blogger.com/profile/01888181411965090399</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://3.bp.blogspot.com/-4WaSDSqbcUg/VC0gaNfGOXI/AAAAAAAAAIc/SlTD4cRFnlM/s72-c/download.gif" height="72" width="72"/><gd:extendedProperty name="commentSource" value="1"/><gd:extendedProperty name="commentModerationMode" value="FILTERED_POSTMOD"/></entry><entry><id>tag:blogger.com,1999:blog-5109055197243893191.post-15746761439302043</id><published>2014-08-25T14:45:00.000+05:45</published><updated>2015-10-26T19:39:32.800+05:45</updated><category scheme="http://www.blogger.com/atom/ns#" term="Tutorials"/><title type='text'>Ways To Make Money On The Internet</title><content type='html'>►Here are Top 5 ways to make money on the internet sitting on your home.These are easy and the simplest ways to make money online.Watch this video by Shelby Church and get some tips to make money online :-&lt;br /&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;a href=&quot;http://4.bp.blogspot.com/-taTCQdkKo_Y/VTNkN5Mvs5I/AAAAAAAAAgY/GuqPnKt0n4s/s1600/make-money-online.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;213&quot; src=&quot;http://4.bp.blogspot.com/-taTCQdkKo_Y/VTNkN5Mvs5I/AAAAAAAAAgY/GuqPnKt0n4s/s1600/make-money-online.png&quot; width=&quot;320&quot; /&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;object height=&quot;340&quot; width=&quot;600&quot;&gt;&lt;param name=&quot;movie&quot; value=&quot;http://www.youtube.com/v/4J-IbxFL1tk&amp;theme=light&amp;showinfo=0&amp;modestbranding=1&amp;autohide=1&quot;&gt;&lt;/param&gt;&lt;param name=&quot;allowFullScreen&quot; value=&quot;true&quot;&gt;&lt;/param&gt;&lt;param name=&quot;allowscriptaccess&quot; value=&quot;always&quot;&gt;&lt;/param&gt;&lt;embed src=&quot;http://www.youtube.com/v/4J-IbxFL1tk&amp;theme=light&amp;showinfo=0&amp;modestbranding=1&amp;autohide=1&quot; type=&quot;application/x-shockwave-flash&quot; allowfullscreen=&quot;true&quot; width=&quot;600&quot; height=&quot;340&quot; allowscriptaccess=&quot;always&quot;&gt;&lt;/embed&gt;&lt;/object&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5109055197243893191/posts/default/15746761439302043'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5109055197243893191/posts/default/15746761439302043'/><link rel='alternate' type='text/html' href='http://www.sparajuli.com.np/2014/08/ways-to-make-money-on-internet.html' title='Ways To Make Money On The Internet'/><author><name>mlworld</name><uri>http://www.blogger.com/profile/01888181411965090399</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://4.bp.blogspot.com/-taTCQdkKo_Y/VTNkN5Mvs5I/AAAAAAAAAgY/GuqPnKt0n4s/s72-c/make-money-online.png" height="72" width="72"/><gd:extendedProperty name="commentSource" value="1"/><gd:extendedProperty name="commentModerationMode" value="FILTERED_POSTMOD"/></entry><entry><id>tag:blogger.com,1999:blog-5109055197243893191.post-3238705041033745887</id><published>2014-08-23T17:39:00.000+05:45</published><updated>2015-06-25T16:25:01.343+05:45</updated><category scheme="http://www.blogger.com/atom/ns#" term="Downloads"/><title type='text'>Download Yumi Latest version</title><content type='html'>&lt;div style=&quot;text-align: justify;&quot;&gt;&amp;nbsp;►Download latest version of YUMI for your PC:-&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;br /&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; YUMI(Your Universal Multiboot Integrator), is the successor to our MultibootISOS.It can be used to &amp;nbsp; &amp;nbsp;create a Multiboot USB Flash Drive containing multiple operating systems,antivirus utilities,disc cloning,diagnostic tools and more.&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;br /&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;a href=&quot;http://www.pendrivelinux.com/yumi-multiboot-usb-creator/&quot; target=&quot;_blank&quot;&gt;&lt;img alt=&quot;Download Yumi&quot; border=&quot;0&quot; height=&quot;85&quot; src=&quot;http://2.bp.blogspot.com/-zpG6rpmBfto/U_h9nYbF48I/AAAAAAAAAHg/fu_-n-shV10/s1600/download-yumi.png&quot; title=&quot;&quot; width=&quot;400&quot; /&gt;&lt;/a&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;Choose your OS(Opersting System) to get proceed:&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;br /&gt;&lt;/div&gt;&lt;ul&gt;&lt;li style=&quot;text-align: justify;&quot;&gt;YUMI for&amp;nbsp;&lt;a href=&quot;http://www.pendrivelinux.com/downloads/YUMI/YUMI-2.0.1.6.exe&quot; target=&quot;_blank&quot;&gt;Windows&lt;/a&gt;.&lt;/li&gt;&lt;li style=&quot;text-align: justify;&quot;&gt;YUMI for&amp;nbsp;&lt;a href=&quot;http://www.pendrivelinux.com/downloads/YUMI/ubuntu/yumi_0.0.1-1_all.deb&quot; target=&quot;_blank&quot;&gt;Ubuntu Linux&lt;/a&gt;.&lt;/li&gt;&lt;/ul&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;br /&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;span style=&quot;background-color: white; color: #333333; font-family: &#39;Lucida Grande&#39;, Verdana, Arial, sans-serif; font-size: 12px; line-height: 19.200000762939453px;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5109055197243893191/posts/default/3238705041033745887'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5109055197243893191/posts/default/3238705041033745887'/><link rel='alternate' type='text/html' href='http://www.sparajuli.com.np/2014/08/download-yumi-latest-version.html' title='Download Yumi Latest version'/><author><name>mlworld</name><uri>http://www.blogger.com/profile/01888181411965090399</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://2.bp.blogspot.com/-zpG6rpmBfto/U_h9nYbF48I/AAAAAAAAAHg/fu_-n-shV10/s72-c/download-yumi.png" height="72" width="72"/><gd:extendedProperty name="commentSource" value="1"/><gd:extendedProperty name="commentModerationMode" value="FILTERED_POSTMOD"/></entry><entry><id>tag:blogger.com,1999:blog-5109055197243893191.post-1369059897478106622</id><published>2014-08-22T16:38:00.001+05:45</published><updated>2015-06-25T16:24:47.914+05:45</updated><category scheme="http://www.blogger.com/atom/ns#" term="Downloads"/><title type='text'>Download µ-Torrent for PC</title><content type='html'>&lt;div style=&quot;text-align: justify;&quot;&gt;►Download latest version of u-torrent.You can download any torrent file faster from this torrent downloader.&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;br /&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;Click on the download button below to download the&amp;nbsp;&lt;span style=&quot;font-family: &#39;Open Sans&#39;, sans-serif; font-size: 23px; line-height: 34px;&quot;&gt;µ-Torrent &lt;/span&gt;&lt;span style=&quot;font-family: &#39;Open Sans&#39;, sans-serif; line-height: 34px;&quot;&gt;for your PC:&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;a href=&quot;http://www.utorrent.com/downloads/win&quot; style=&quot;text-align: center;&quot; target=&quot;_blank&quot;&gt;&lt;img alt=&quot; Download u torrent&quot; border=&quot;0&quot; src=&quot;http://3.bp.blogspot.com/-ikAtogTKS_s/U_ccISwzGgI/AAAAAAAAAG8/JfvxroLsJdE/s1600/folder_download_456.png&quot; /&gt;&lt;/a&gt;&amp;nbsp;&lt;a href=&quot;http://1.bp.blogspot.com/-U3MyTIyGNPQ/U_cg7EZpHmI/AAAAAAAAAHM/xOtqtSzrgLA/s1600/utorrent_icon_hack.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em; text-align: center;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;http://1.bp.blogspot.com/-U3MyTIyGNPQ/U_cg7EZpHmI/AAAAAAAAAHM/xOtqtSzrgLA/s1600/utorrent_icon_hack.png&quot; /&gt;&lt;/a&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;span style=&quot;font-family: &#39;Open Sans&#39;, sans-serif; line-height: 34px;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5109055197243893191/posts/default/1369059897478106622'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5109055197243893191/posts/default/1369059897478106622'/><link rel='alternate' type='text/html' href='http://www.sparajuli.com.np/2014/08/download-torrent-for-pc.html' title='Download µ-Torrent for PC'/><author><name>mlworld</name><uri>http://www.blogger.com/profile/01888181411965090399</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://3.bp.blogspot.com/-ikAtogTKS_s/U_ccISwzGgI/AAAAAAAAAG8/JfvxroLsJdE/s72-c/folder_download_456.png" height="72" width="72"/><gd:extendedProperty name="commentSource" value="1"/><gd:extendedProperty name="commentModerationMode" value="FILTERED_POSTMOD"/></entry><entry><id>tag:blogger.com,1999:blog-5109055197243893191.post-7074555546804497163</id><published>2014-08-21T22:30:00.001+05:45</published><updated>2015-06-25T16:24:34.303+05:45</updated><category scheme="http://www.blogger.com/atom/ns#" term="Downloads"/><title type='text'>Download Most Popular and useful Software/Programs </title><content type='html'>&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;span style=&quot;font-size: large;&quot;&gt;► Download your essential software/programs from here:-&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;br /&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;You can recommend &amp;nbsp;us if your desired software/program is not available here Or post your feelings about the post in the comment box below.&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;br /&gt;&lt;/div&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;br /&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;b&gt;&lt;span style=&quot;font-size: large;&quot;&gt;♦ Notepad++ :&lt;/span&gt;&lt;/b&gt;&lt;/div&gt;&lt;br /&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;span style=&quot;font-size: large; font-weight: bold;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;It helps you to write Html coding more effectively than Notepad which is default installed in your pc.&lt;/div&gt;&lt;br /&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;br /&gt;&lt;/div&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: justify;&quot;&gt;&lt;a href=&quot;http://notepad-plus-plus.org/download/v6.6.8.html&quot; target=&quot;_blank&quot;&gt;&lt;img alt=&quot; Download Notepad ++&quot; border=&quot;0&quot; src=&quot;http://1.bp.blogspot.com/-WT5U2KUNi_o/U_YjAfZv9lI/AAAAAAAAAGo/rRImB0M3Zk8/s1600/folder_download.htnl_01.gif&quot; /&gt;&lt;/a&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;Download Notepad&amp;nbsp;++ click here:&amp;nbsp;&lt;span style=&quot;font-size: large;&quot;&gt;&amp;nbsp;&lt;a href=&quot;http://notepad-plus-plus.org/download/v6.6.8.html&quot; target=&quot;_blank&quot;&gt;Download&lt;/a&gt;.&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;br /&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;span style=&quot;font-size: large;&quot;&gt;&lt;b&gt;♦ Joomla&lt;/b&gt;:&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;It&lt;span style=&quot;font-size: large;&quot;&gt;&amp;nbsp;&lt;/span&gt;is a open source CMS for building powerful websites.&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;Know more here:&lt;/div&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: justify;&quot;&gt;&lt;object height=&quot;340&quot; width=&quot;600&quot;&gt;&lt;param name=&quot;movie&quot; value=&quot;http://www.youtube.com/v/Qjnc0H8utks&amp;theme=light&amp;showinfo=0&amp;modestbranding=1&amp;autohide=1&quot;&gt;&lt;/param&gt;&lt;param name=&quot;allowFullScreen&quot; value=&quot;true&quot;&gt;&lt;/param&gt;&lt;param name=&quot;allowscriptaccess&quot; value=&quot;always&quot;&gt;&lt;/param&gt;&lt;embed src=&quot;http://www.youtube.com/v/Qjnc0H8utks&amp;theme=light&amp;showinfo=0&amp;modestbranding=1&amp;autohide=1&quot; type=&quot;application/x-shockwave-flash&quot; allowfullscreen=&quot;true&quot; width=&quot;600&quot; height=&quot;340&quot; allowscriptaccess=&quot;always&quot;&gt;&lt;/embed&gt;&lt;/object&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;br /&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;br /&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;br /&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;br /&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;You can download the latest version of &lt;i&gt;Joomla &lt;/i&gt;from here:&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;br /&gt;&lt;/div&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;a href=&quot;http://www.joomla.org/download.html#j3&quot; style=&quot;clear: left; float: left; margin-bottom: 1em; margin-right: 1em; text-align: justify;&quot; target=&quot;_blank&quot;&gt;&lt;img alt=&quot; Download Joomla&quot; border=&quot;0&quot; src=&quot;http://1.bp.blogspot.com/-ikAtogTKS_s/U_ccISwzGgI/AAAAAAAAAG4/VqdrRrhiUMI/s1600/folder_download_456.png&quot; /&gt;&lt;/a&gt;&lt;/div&gt;&lt;div style=&quot;margin-left: 1em; margin-right: 1em; text-align: justify;&quot;&gt;&lt;a href=&quot;http://1.bp.blogspot.com/-vGuup6Gn5RQ/U_cdIUt8Z0I/AAAAAAAAAHA/fiCwMKADidg/s1600/download.jpg&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;/a&gt;&lt;a href=&quot;http://1.bp.blogspot.com/-vGuup6Gn5RQ/U_cdIUt8Z0I/AAAAAAAAAHA/fiCwMKADidg/s1600/download.jpg&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;217&quot; src=&quot;http://1.bp.blogspot.com/-vGuup6Gn5RQ/U_cdIUt8Z0I/AAAAAAAAAHA/fiCwMKADidg/s1600/download.jpg&quot; width=&quot;320&quot; /&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;br /&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;br /&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5109055197243893191/posts/default/7074555546804497163'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5109055197243893191/posts/default/7074555546804497163'/><link rel='alternate' type='text/html' href='http://www.sparajuli.com.np/2014/08/download-softwareprograms.html' title='Download Most Popular and useful Software/Programs '/><author><name>mlworld</name><uri>http://www.blogger.com/profile/01888181411965090399</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://1.bp.blogspot.com/-WT5U2KUNi_o/U_YjAfZv9lI/AAAAAAAAAGo/rRImB0M3Zk8/s72-c/folder_download.htnl_01.gif" height="72" width="72"/><gd:extendedProperty name="commentSource" value="1"/><gd:extendedProperty name="commentModerationMode" value="FILTERED_POSTMOD"/></entry><entry><id>tag:blogger.com,1999:blog-5109055197243893191.post-3361287948667277848</id><published>2014-08-12T19:56:00.001+05:45</published><updated>2015-10-26T19:40:54.130+05:45</updated><category scheme="http://www.blogger.com/atom/ns#" term="General"/><title type='text'>Relation of Information Technology To World</title><content type='html'>&lt;div style=&quot;text-align: justify;&quot;&gt;►Information Technology rules the world in this generation that&#39;s why we should be close to IT.&lt;/div&gt;&lt;div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;know the importance of IT here.Watch it.&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;br /&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;object height=&quot;340&quot; style=&quot;clear: left; float: left;&quot; width=&quot;600&quot;&gt;&lt;param name=&quot;movie&quot; value=&quot;http://www.youtube.com/v/YgWnhS5WyfM&amp;theme=light&amp;showinfo=0&amp;modestbranding=1&amp;autohide=1&quot;&gt;&lt;/param&gt;&lt;param name=&quot;allowFullScreen&quot; value=&quot;true&quot;&gt;&lt;/param&gt;&lt;param name=&quot;allowscriptaccess&quot; value=&quot;always&quot;&gt;&lt;/param&gt;&lt;embed src=&quot;http://www.youtube.com/v/YgWnhS5WyfM&amp;theme=light&amp;showinfo=0&amp;modestbranding=1&amp;autohide=1&quot; type=&quot;application/x-shockwave-flash&quot; allowfullscreen=&quot;true&quot; width=&quot;600&quot; height=&quot;340&quot; allowscriptaccess=&quot;always&quot;&gt;&lt;/embed&gt;&lt;/object&gt;&lt;/div&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: justify;&quot;&gt;&lt;a href=&quot;http://3.bp.blogspot.com/-GRJGkYGRP6s/VTNjf9gSdaI/AAAAAAAAAgM/baHUXa5t-RY/s1600/IT_.jpg&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;240&quot; src=&quot;http://3.bp.blogspot.com/-GRJGkYGRP6s/VTNjf9gSdaI/AAAAAAAAAgM/baHUXa5t-RY/s1600/IT_.jpg&quot; width=&quot;320&quot; /&gt;&lt;/a&gt;&lt;/div&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: justify;&quot;&gt;&lt;br /&gt;&lt;/div&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: justify;&quot;&gt;Without IT,the whole world is incomplete.Every sector is related to it.So,lets start from today why tomorrow?&lt;/div&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: justify;&quot;&gt;Nothing is impossible if we do any task from our heart.Lets do something in IT instead of just observing.&lt;/div&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: justify;&quot;&gt;Can we start our career as Mark zukerberg did?Watch here about (Mark zukerberg and his facebook)&#39;s profile.&lt;/div&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: justify;&quot;&gt;&lt;br /&gt;&lt;/div&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: justify;&quot;&gt;&lt;br /&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;object height=&quot;340&quot; width=&quot;600&quot;&gt;&lt;param name=&quot;movie&quot; value=&quot;http://www.youtube.com/v/C2VAIbEdTv8&amp;theme=light&amp;showinfo=0&amp;modestbranding=1&amp;autohide=1&quot;&gt;&lt;/param&gt;&lt;param name=&quot;allowFullScreen&quot; value=&quot;true&quot;&gt;&lt;/param&gt;&lt;param name=&quot;allowscriptaccess&quot; value=&quot;always&quot;&gt;&lt;/param&gt;&lt;embed src=&quot;http://www.youtube.com/v/C2VAIbEdTv8&amp;theme=light&amp;showinfo=0&amp;modestbranding=1&amp;autohide=1&quot; type=&quot;application/x-shockwave-flash&quot; allowfullscreen=&quot;true&quot; width=&quot;600&quot; height=&quot;340&quot; allowscriptaccess=&quot;always&quot;&gt;&lt;/embed&gt;&lt;/object&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;br /&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;br /&gt;&lt;/div&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: justify;&quot;&gt;&lt;b&gt;Feel lucky to be the follower of Information Technology.&lt;/b&gt;&lt;/div&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: justify;&quot;&gt;&lt;b&gt;&lt;br /&gt;&lt;/b&gt;&lt;/div&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: justify;&quot;&gt;We are gonna bring disaster in this sector.Are you ready to cope with us&lt;b&gt;&amp;nbsp;?&lt;/b&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5109055197243893191/posts/default/3361287948667277848'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5109055197243893191/posts/default/3361287948667277848'/><link rel='alternate' type='text/html' href='http://www.sparajuli.com.np/2014/08/relation-of-information-technology-to.html' title='Relation of Information Technology To World'/><author><name>mlworld</name><uri>http://www.blogger.com/profile/01888181411965090399</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://3.bp.blogspot.com/-GRJGkYGRP6s/VTNjf9gSdaI/AAAAAAAAAgM/baHUXa5t-RY/s72-c/IT_.jpg" height="72" width="72"/><gd:extendedProperty name="commentSource" value="1"/><gd:extendedProperty name="commentModerationMode" value="FILTERED_POSTMOD"/></entry><entry><id>tag:blogger.com,1999:blog-5109055197243893191.post-1939927347850309308</id><published>2014-08-09T13:10:00.001+05:45</published><updated>2015-10-26T19:51:09.213+05:45</updated><category scheme="http://www.blogger.com/atom/ns#" term="Tutorials"/><title type='text'>Ways of earning money from IT sector</title><content type='html'>&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;b&gt;►Top 3 ways to earn money from IT sector.You can earn money from IT sector if you are building future from IT by the following ways:&lt;/b&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;br /&gt;&lt;/div&gt;&lt;ul&gt;&lt;li style=&quot;text-align: justify;&quot;&gt;&lt;b&gt;Start learning developing android apps.Get help from&amp;nbsp;&lt;a href=&quot;http://developer.android.com/&quot; target=&quot;_blank&quot;&gt;here&lt;/a&gt;.&lt;/b&gt;&lt;/li&gt;&lt;/ul&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;b&gt;&lt;br /&gt;&lt;b&gt;&lt;/b&gt;&lt;/b&gt;&lt;/div&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; display: inline !important; text-align: center;&quot;&gt;&lt;b&gt;&lt;b&gt;&lt;a href=&quot;http://3.bp.blogspot.com/-bA0of6a6wKk/U-tdjv3CnYI/AAAAAAAAAGA/bf6RuN6hK1Q/s1600/online-job-in-nepal%2B(1).gif&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;http://3.bp.blogspot.com/-bA0of6a6wKk/U-tdjv3CnYI/AAAAAAAAAGA/bf6RuN6hK1Q/s1600/online-job-in-nepal%2B(1).gif&quot; /&gt;&lt;/a&gt;&lt;/b&gt;&lt;/b&gt;&lt;/div&gt;&lt;b&gt;&lt;b&gt;&lt;/b&gt;&lt;/b&gt;&lt;br /&gt;&lt;a name=&#39;more&#39;&gt;&lt;/a&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;&lt;b&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;b&gt;Learn programming such as Java,C,C#,C++, etc.Start learning from today.Learn from&amp;nbsp;&lt;a href=&quot;http://tutorialspoint.com/&quot; target=&quot;_blank&quot;&gt;here&lt;/a&gt;.&lt;/b&gt;&lt;/div&gt;&lt;/b&gt;&lt;/li&gt;&lt;/ul&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;a href=&quot;http://4.bp.blogspot.com/-urBLWBfAHAk/U-XGCyozKyI/AAAAAAAAADY/dPL0ipRQYlg/s1600/online-computer-programming-degree.jpg&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em; text-align: center;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;300&quot; src=&quot;http://4.bp.blogspot.com/-urBLWBfAHAk/U-XGCyozKyI/AAAAAAAAADY/dPL0ipRQYlg/s1600/online-computer-programming-degree.jpg&quot; width=&quot;400&quot; /&gt;&lt;/a&gt;&lt;/div&gt;&lt;ul&gt;&lt;/ul&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;br /&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;b&gt;&lt;/b&gt;&lt;/div&gt;&lt;ul&gt;&lt;b&gt;&lt;li style=&quot;display: inline !important;&quot;&gt;&lt;ul&gt;&lt;/ul&gt;&lt;/li&gt;&lt;li&gt;&lt;b&gt;&lt;b&gt;&lt;b&gt;Be perfect in photo and video editing.You may choose Animation or Video editing as a profession in your career or may be on Film industry too.It will lead you to the best destiny in IT sector.&lt;/b&gt;&lt;/b&gt;&lt;/b&gt;&lt;/li&gt;&lt;b&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; display: inline !important; text-align: center;&quot;&gt;&lt;a href=&quot;http://1.bp.blogspot.com/-kRCC3RpkaWo/U-XLSsDwyjI/AAAAAAAAADo/yUMeSksfbf0/s1600/Colorful_Photoshop_Wallpaper_by_Zero1122.jpg&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;250&quot; src=&quot;http://1.bp.blogspot.com/-kRCC3RpkaWo/U-XLSsDwyjI/AAAAAAAAADo/yUMeSksfbf0/s1600/Colorful_Photoshop_Wallpaper_by_Zero1122.jpg&quot; width=&quot;400&quot; /&gt;&lt;/a&gt;&lt;/div&gt;&lt;/b&gt;&lt;/b&gt;&lt;/ul&gt;&lt;b&gt;&lt;/b&gt;&lt;br /&gt;&lt;ul&gt;&lt;/ul&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;br /&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;b&gt;If you have started your journey in IT field,lets share our knowledge explore ideas &amp;amp; unite to challenge the generation.Cope with us to reach our destiny.&lt;/b&gt;&lt;/div&gt;&lt;div style=&quot;text-align: justify;&quot;&gt;&lt;b&gt;Your feedbacks are highly appreciated.&lt;/b&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5109055197243893191/posts/default/1939927347850309308'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5109055197243893191/posts/default/1939927347850309308'/><link rel='alternate' type='text/html' href='http://www.sparajuli.com.np/2014/08/ways-of-earning-money-from-it-sector.html' title='Ways of earning money from IT sector'/><author><name>mlworld</name><uri>http://www.blogger.com/profile/01888181411965090399</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://3.bp.blogspot.com/-bA0of6a6wKk/U-tdjv3CnYI/AAAAAAAAAGA/bf6RuN6hK1Q/s72-c/online-job-in-nepal%2B(1).gif" height="72" width="72"/><gd:extendedProperty name="commentSource" value="1"/><gd:extendedProperty name="commentModerationMode" value="FILTERED_POSTMOD"/></entry></feed>