<?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-630550980296798375</id><updated>2024-08-31T00:25:01.782-07:00</updated><category term="HTML Tutorials"/><title type='text'>Tutorials</title><subtitle type='html'>A tutorial is a method of transferring knowledge and may be used as a part of a learning process. Here Providing you Free tutorials and reference manuals with examples</subtitle><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://tutorialterminal.blogspot.com/feeds/posts/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/630550980296798375/posts/default'/><link rel='alternate' type='text/html' href='http://tutorialterminal.blogspot.com/'/><link rel='hub' href='http://pubsubhubbub.appspot.com/'/><author><name>InfoTuck</name><uri>http://www.blogger.com/profile/17016689498685423358</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='18' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEisgI3Ncil5ilMjxcK3ufYN7TfeFDOgQkOZ0TpqUUwJVOXMGEDnOYfkooN64nDBC41rYBSBo6l3mT6rtuADi6f8GQ8f0-evyYl2l7GHddwgpO-6Sc0xBBiDHiW5RUqG0M8/s1600/*'/></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>18</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>25</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-630550980296798375.post-9025138698303054362</id><published>2014-05-01T05:51:00.001-07:00</published><updated>2014-05-01T05:51:54.606-07:00</updated><title type='text'>USER DEFINED DATA TYPES</title><content type='html'>&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;
C++ allows us to define our own types based on other existing data types. In order to do that we shall use keyword typedef, whose form is:&lt;br /&gt;
&lt;br /&gt;
typedefexisting_typenew_type_name ;&lt;br /&gt;
&lt;br /&gt;
whereexisting_type is a C++ fundamental or any other defined type and new_type_name is the name that the new type we are going to define will receive. For example:&lt;br /&gt;
&lt;br /&gt;
typedef char C;&lt;br /&gt;
typedef unsigned int WORD;&lt;br /&gt;
typedef char * string_t;&lt;br /&gt;
typedef char field [50];&lt;br /&gt;
&lt;br /&gt;
In this case we have defined four new data types: C, WORD, string_t and field as char, unsigned int, char* and char[50] respectively, that we could perfectly use later as valid types:&lt;br /&gt;
&lt;br /&gt;
C achar, anotherchar, *ptchar1;&lt;br /&gt;
WORD myword;&lt;br /&gt;
string_t ptchar2;&lt;br /&gt;
field name;&lt;br /&gt;
&lt;br /&gt;
typedef can be useful to define a type that is repeatedly used within a program and it is possible that we will need to change it in a later version, or if a type you want to use has too long a name and you want it to be shorter.&lt;br /&gt;
&lt;br /&gt;
Unions allow a portion of memory to be accessed as different data types, since all of them are in fact the same location in memory. Its declaration and use is similar to the one of structures but its functionality is totally different:&lt;br /&gt;
unionmodel_name {&lt;br /&gt;
&amp;nbsp; type1 element1;&lt;br /&gt;
&amp;nbsp; type2 element2;&lt;br /&gt;
&amp;nbsp; type3 element3;&lt;br /&gt;
&amp;nbsp; .&lt;br /&gt;
&amp;nbsp; .&lt;br /&gt;
} object_name;&lt;br /&gt;
All the elements of the union declaration occupy the same space of memory. Its size is the one of the greatest element of the declaration. For example:&lt;br /&gt;
unionmytypes_t {&lt;br /&gt;
char c;&lt;br /&gt;
inti;&lt;br /&gt;
float f;&lt;br /&gt;
&amp;nbsp; } mytypes;&lt;br /&gt;
defines three elements:&lt;br /&gt;
mytypes.c&lt;br /&gt;
mytypes.i&lt;br /&gt;
mytypes.f&lt;br /&gt;
each one of a different data type. Since all of them are referring to a same location in memory, the modification of one of the elements will afect the value of all of them.&lt;br /&gt;
One of the uses a union may have is to unite an elementary type with an array or structures of smaller elements. For example,&lt;br /&gt;
&lt;br /&gt;
unionmix_t{&lt;br /&gt;
long l;&lt;br /&gt;
struct {&lt;br /&gt;
short hi;&lt;br /&gt;
short lo;&lt;br /&gt;
&amp;nbsp; &amp;nbsp; } s;&lt;br /&gt;
char c[4];&lt;br /&gt;
} mix;&lt;br /&gt;
&lt;div&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;/div&gt;
</content><link rel='replies' type='application/atom+xml' href='http://tutorialterminal.blogspot.com/feeds/9025138698303054362/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://tutorialterminal.blogspot.com/2014/05/user-defined-data-types.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/630550980296798375/posts/default/9025138698303054362'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/630550980296798375/posts/default/9025138698303054362'/><link rel='alternate' type='text/html' href='http://tutorialterminal.blogspot.com/2014/05/user-defined-data-types.html' title='USER DEFINED DATA TYPES'/><author><name>InfoTuck</name><uri>http://www.blogger.com/profile/17016689498685423358</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='18' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEisgI3Ncil5ilMjxcK3ufYN7TfeFDOgQkOZ0TpqUUwJVOXMGEDnOYfkooN64nDBC41rYBSBo6l3mT6rtuADi6f8GQ8f0-evyYl2l7GHddwgpO-6Sc0xBBiDHiW5RUqG0M8/s1600/*'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-630550980296798375.post-6783944222013787591</id><published>2014-04-27T23:52:00.002-07:00</published><updated>2014-04-27T23:52:38.490-07:00</updated><title type='text'>Data Types in C++</title><content type='html'>&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;
&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgoLYE-B9mVxiTSiXtH33fOpYgMkIqgzC-r0rIOR5qAfH63Kam9J-pf_8RsX52Vv6Dk1EaUE05MdbPnjbL26pn10dxhtdGqskX7RC0NG8V4pNZNzXoC2SU_U8TRntrY5G3bv1B-9ksLf1k/s1600/C%252B%252B.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgoLYE-B9mVxiTSiXtH33fOpYgMkIqgzC-r0rIOR5qAfH63Kam9J-pf_8RsX52Vv6Dk1EaUE05MdbPnjbL26pn10dxhtdGqskX7RC0NG8V4pNZNzXoC2SU_U8TRntrY5G3bv1B-9ksLf1k/s1600/C%252B%252B.png&quot; height=&quot;320&quot; width=&quot;320&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: center;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: center;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
While doing programming in any computer programming language, we need to use various variables in order to store various data. Variables are nothing butspecially reserved memory locations which stores differentvalues. It means that when we create a variable we actually reserve some space in memory.&lt;br /&gt;
&lt;br /&gt;
We may even like to store information of various data types like character, Boolean, wide character, floating point, integer, double floating point etc. It is based on the data type of a specific variable, the operating system allocates specified memory and decides on what can be stored in that reserved memory.&lt;br /&gt;
&lt;br /&gt;
Here is the list of data types used in C++ language programming along with their range and Bit Width&lt;br /&gt;
&lt;div&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div&gt;
&lt;table border=&quot;1&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot; class=&quot;MsoTableGrid&quot; style=&quot;border-collapse: collapse; border: none; mso-border-alt: solid windowtext .5pt; mso-padding-alt: 0in 5.4pt 0in 5.4pt; mso-yfti-tbllook: 1184; width: 621px;&quot;&gt;
 &lt;tbody&gt;
&lt;tr style=&quot;height: 21.25pt; mso-yfti-firstrow: yes; mso-yfti-irow: 0;&quot;&gt;
  &lt;td style=&quot;border: solid windowtext 1.0pt; height: 21.25pt; mso-border-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt; width: 115.15pt;&quot; width=&quot;154&quot;&gt;
  &lt;div align=&quot;center&quot; class=&quot;MsoNormal&quot; style=&quot;line-height: 107%; margin-bottom: 8.0pt; text-align: center;&quot;&gt;
&lt;b&gt;Type&lt;o:p&gt;&lt;/o:p&gt;&lt;/b&gt;&lt;/div&gt;
&lt;/td&gt;
  &lt;td style=&quot;border-left: none; border: solid windowtext 1.0pt; height: 21.25pt; mso-border-alt: solid windowtext .5pt; mso-border-left-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt; width: 2.75in;&quot; width=&quot;264&quot;&gt;
  &lt;div align=&quot;center&quot; class=&quot;MsoNormal&quot; style=&quot;line-height: 107%; margin-bottom: 8.0pt; text-align: center;&quot;&gt;
&lt;b&gt;Typical Range&lt;o:p&gt;&lt;/o:p&gt;&lt;/b&gt;&lt;/div&gt;
&lt;/td&gt;
  &lt;td style=&quot;border-left: none; border: solid windowtext 1.0pt; height: 21.25pt; mso-border-alt: solid windowtext .5pt; mso-border-left-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt; width: 152.35pt;&quot; width=&quot;203&quot;&gt;
  &lt;div align=&quot;center&quot; class=&quot;MsoNormal&quot; style=&quot;line-height: 107%; margin-bottom: 8.0pt; text-align: center;&quot;&gt;
&lt;b&gt;Typical Bit Width&lt;o:p&gt;&lt;/o:p&gt;&lt;/b&gt;&lt;/div&gt;
&lt;/td&gt;
 &lt;/tr&gt;
&lt;tr style=&quot;height: 21.95pt; mso-yfti-irow: 1;&quot;&gt;
  &lt;td style=&quot;border-top: none; border: solid windowtext 1.0pt; height: 21.95pt; mso-border-alt: solid windowtext .5pt; mso-border-top-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt; width: 115.15pt;&quot; width=&quot;154&quot;&gt;
  &lt;div class=&quot;MsoNormal&quot; style=&quot;line-height: 107%; margin-bottom: 8.0pt;&quot;&gt;
&lt;i&gt;char&lt;o:p&gt;&lt;/o:p&gt;&lt;/i&gt;&lt;/div&gt;
&lt;/td&gt;
  &lt;td style=&quot;border-bottom: solid windowtext 1.0pt; border-left: none; border-right: solid windowtext 1.0pt; border-top: none; height: 21.95pt; mso-border-alt: solid windowtext .5pt; mso-border-left-alt: solid windowtext .5pt; mso-border-top-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt; width: 2.75in;&quot; width=&quot;264&quot;&gt;
  &lt;div class=&quot;MsoNormal&quot; style=&quot;line-height: 107%; margin-bottom: 8.0pt;&quot;&gt;
-127 to
  127 or 0 to 255&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;
&lt;/td&gt;
  &lt;td style=&quot;border-bottom: solid windowtext 1.0pt; border-left: none; border-right: solid windowtext 1.0pt; border-top: none; height: 21.95pt; mso-border-alt: solid windowtext .5pt; mso-border-left-alt: solid windowtext .5pt; mso-border-top-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt; width: 152.35pt;&quot; width=&quot;203&quot;&gt;
  &lt;div class=&quot;MsoNormal&quot; style=&quot;line-height: 107%; margin-bottom: 8.0pt;&quot;&gt;
1byte&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;
&lt;/td&gt;
 &lt;/tr&gt;
&lt;tr style=&quot;height: 21.95pt; mso-yfti-irow: 2;&quot;&gt;
  &lt;td style=&quot;border-top: none; border: solid windowtext 1.0pt; height: 21.95pt; mso-border-alt: solid windowtext .5pt; mso-border-top-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt; width: 115.15pt;&quot; width=&quot;154&quot;&gt;
  &lt;div class=&quot;MsoNormal&quot; style=&quot;line-height: 107%; margin-bottom: 8.0pt;&quot;&gt;
&lt;i&gt;unsigned char&lt;o:p&gt;&lt;/o:p&gt;&lt;/i&gt;&lt;/div&gt;
&lt;/td&gt;
  &lt;td style=&quot;border-bottom: solid windowtext 1.0pt; border-left: none; border-right: solid windowtext 1.0pt; border-top: none; height: 21.95pt; mso-border-alt: solid windowtext .5pt; mso-border-left-alt: solid windowtext .5pt; mso-border-top-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt; width: 2.75in;&quot; width=&quot;264&quot;&gt;
  &lt;div class=&quot;MsoNormal&quot; style=&quot;line-height: 107%; margin-bottom: 8.0pt;&quot;&gt;
0 to 255&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;
&lt;/td&gt;
  &lt;td style=&quot;border-bottom: solid windowtext 1.0pt; border-left: none; border-right: solid windowtext 1.0pt; border-top: none; height: 21.95pt; mso-border-alt: solid windowtext .5pt; mso-border-left-alt: solid windowtext .5pt; mso-border-top-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt; width: 152.35pt;&quot; width=&quot;203&quot;&gt;
  &lt;div class=&quot;MsoNormal&quot; style=&quot;line-height: 107%; margin-bottom: 8.0pt;&quot;&gt;
1byte&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;
&lt;/td&gt;
 &lt;/tr&gt;
&lt;tr style=&quot;height: 21.25pt; mso-yfti-irow: 3;&quot;&gt;
  &lt;td style=&quot;border-top: none; border: solid windowtext 1.0pt; height: 21.25pt; mso-border-alt: solid windowtext .5pt; mso-border-top-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt; width: 115.15pt;&quot; width=&quot;154&quot;&gt;
  &lt;div class=&quot;MsoNormal&quot; style=&quot;line-height: 107%; margin-bottom: 8.0pt;&quot;&gt;
&lt;i&gt;signed char&lt;o:p&gt;&lt;/o:p&gt;&lt;/i&gt;&lt;/div&gt;
&lt;/td&gt;
  &lt;td style=&quot;border-bottom: solid windowtext 1.0pt; border-left: none; border-right: solid windowtext 1.0pt; border-top: none; height: 21.25pt; mso-border-alt: solid windowtext .5pt; mso-border-left-alt: solid windowtext .5pt; mso-border-top-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt; width: 2.75in;&quot; width=&quot;264&quot;&gt;
  &lt;div class=&quot;MsoNormal&quot; style=&quot;line-height: 107%; margin-bottom: 8.0pt;&quot;&gt;
-127 to
  127&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;
&lt;/td&gt;
  &lt;td style=&quot;border-bottom: solid windowtext 1.0pt; border-left: none; border-right: solid windowtext 1.0pt; border-top: none; height: 21.25pt; mso-border-alt: solid windowtext .5pt; mso-border-left-alt: solid windowtext .5pt; mso-border-top-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt; width: 152.35pt;&quot; width=&quot;203&quot;&gt;
  &lt;div class=&quot;MsoNormal&quot; style=&quot;line-height: 107%; margin-bottom: 8.0pt;&quot;&gt;
1byte&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;
&lt;/td&gt;
 &lt;/tr&gt;
&lt;tr style=&quot;height: 21.95pt; mso-yfti-irow: 4;&quot;&gt;
  &lt;td style=&quot;border-top: none; border: solid windowtext 1.0pt; height: 21.95pt; mso-border-alt: solid windowtext .5pt; mso-border-top-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt; width: 115.15pt;&quot; width=&quot;154&quot;&gt;
  &lt;div class=&quot;MsoNormal&quot; style=&quot;line-height: 107%; margin-bottom: 8.0pt;&quot;&gt;
&lt;i&gt;int&lt;o:p&gt;&lt;/o:p&gt;&lt;/i&gt;&lt;/div&gt;
&lt;/td&gt;
  &lt;td style=&quot;border-bottom: solid windowtext 1.0pt; border-left: none; border-right: solid windowtext 1.0pt; border-top: none; height: 21.95pt; mso-border-alt: solid windowtext .5pt; mso-border-left-alt: solid windowtext .5pt; mso-border-top-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt; width: 2.75in;&quot; width=&quot;264&quot;&gt;
  &lt;div class=&quot;MsoNormal&quot; style=&quot;line-height: 107%; margin-bottom: 8.0pt;&quot;&gt;
-2147483648
  to 2147483647&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;
&lt;/td&gt;
  &lt;td style=&quot;border-bottom: solid windowtext 1.0pt; border-left: none; border-right: solid windowtext 1.0pt; border-top: none; height: 21.95pt; mso-border-alt: solid windowtext .5pt; mso-border-left-alt: solid windowtext .5pt; mso-border-top-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt; width: 152.35pt;&quot; width=&quot;203&quot;&gt;
  &lt;div class=&quot;MsoNormal&quot; style=&quot;line-height: 107%; margin-bottom: 8.0pt;&quot;&gt;
4bytes&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;
&lt;/td&gt;
 &lt;/tr&gt;
&lt;tr style=&quot;height: 21.95pt; mso-yfti-irow: 5;&quot;&gt;
  &lt;td style=&quot;border-top: none; border: solid windowtext 1.0pt; height: 21.95pt; mso-border-alt: solid windowtext .5pt; mso-border-top-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt; width: 115.15pt;&quot; width=&quot;154&quot;&gt;
  &lt;div class=&quot;MsoNormal&quot; style=&quot;line-height: 107%; margin-bottom: 8.0pt;&quot;&gt;
&lt;i&gt;unsigned int&lt;o:p&gt;&lt;/o:p&gt;&lt;/i&gt;&lt;/div&gt;
&lt;/td&gt;
  &lt;td style=&quot;border-bottom: solid windowtext 1.0pt; border-left: none; border-right: solid windowtext 1.0pt; border-top: none; height: 21.95pt; mso-border-alt: solid windowtext .5pt; mso-border-left-alt: solid windowtext .5pt; mso-border-top-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt; width: 2.75in;&quot; width=&quot;264&quot;&gt;
  &lt;div class=&quot;MsoNormal&quot; style=&quot;line-height: 107%; margin-bottom: 8.0pt;&quot;&gt;
0 to
  4294967295&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;
&lt;/td&gt;
  &lt;td style=&quot;border-bottom: solid windowtext 1.0pt; border-left: none; border-right: solid windowtext 1.0pt; border-top: none; height: 21.95pt; mso-border-alt: solid windowtext .5pt; mso-border-left-alt: solid windowtext .5pt; mso-border-top-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt; width: 152.35pt;&quot; width=&quot;203&quot;&gt;
  &lt;div class=&quot;MsoNormal&quot; style=&quot;line-height: 107%; margin-bottom: 8.0pt;&quot;&gt;
4bytes&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;
&lt;/td&gt;
 &lt;/tr&gt;
&lt;tr style=&quot;height: 21.25pt; mso-yfti-irow: 6;&quot;&gt;
  &lt;td style=&quot;border-top: none; border: solid windowtext 1.0pt; height: 21.25pt; mso-border-alt: solid windowtext .5pt; mso-border-top-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt; width: 115.15pt;&quot; width=&quot;154&quot;&gt;
  &lt;div class=&quot;MsoNormal&quot; style=&quot;line-height: 107%; margin-bottom: 8.0pt;&quot;&gt;
&lt;i&gt;signed int&lt;o:p&gt;&lt;/o:p&gt;&lt;/i&gt;&lt;/div&gt;
&lt;/td&gt;
  &lt;td style=&quot;border-bottom: solid windowtext 1.0pt; border-left: none; border-right: solid windowtext 1.0pt; border-top: none; height: 21.25pt; mso-border-alt: solid windowtext .5pt; mso-border-left-alt: solid windowtext .5pt; mso-border-top-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt; width: 2.75in;&quot; width=&quot;264&quot;&gt;
  &lt;div class=&quot;MsoNormal&quot; style=&quot;line-height: 107%; margin-bottom: 8.0pt;&quot;&gt;
-2147483648
  to 2147483647&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;
&lt;/td&gt;
  &lt;td style=&quot;border-bottom: solid windowtext 1.0pt; border-left: none; border-right: solid windowtext 1.0pt; border-top: none; height: 21.25pt; mso-border-alt: solid windowtext .5pt; mso-border-left-alt: solid windowtext .5pt; mso-border-top-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt; width: 152.35pt;&quot; width=&quot;203&quot;&gt;
  &lt;div class=&quot;MsoNormal&quot; style=&quot;line-height: 107%; margin-bottom: 8.0pt;&quot;&gt;
4bytes&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;
&lt;/td&gt;
 &lt;/tr&gt;
&lt;tr style=&quot;height: 21.95pt; mso-yfti-irow: 7;&quot;&gt;
  &lt;td style=&quot;border-top: none; border: solid windowtext 1.0pt; height: 21.95pt; mso-border-alt: solid windowtext .5pt; mso-border-top-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt; width: 115.15pt;&quot; width=&quot;154&quot;&gt;
  &lt;div class=&quot;MsoNormal&quot; style=&quot;line-height: 107%; margin-bottom: 8.0pt;&quot;&gt;
&lt;i&gt;short int&lt;o:p&gt;&lt;/o:p&gt;&lt;/i&gt;&lt;/div&gt;
&lt;/td&gt;
  &lt;td style=&quot;border-bottom: solid windowtext 1.0pt; border-left: none; border-right: solid windowtext 1.0pt; border-top: none; height: 21.95pt; mso-border-alt: solid windowtext .5pt; mso-border-left-alt: solid windowtext .5pt; mso-border-top-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt; width: 2.75in;&quot; width=&quot;264&quot;&gt;
  &lt;div class=&quot;MsoNormal&quot; style=&quot;line-height: 107%; margin-bottom: 8.0pt;&quot;&gt;
-32768
  to 32767&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;
&lt;/td&gt;
  &lt;td style=&quot;border-bottom: solid windowtext 1.0pt; border-left: none; border-right: solid windowtext 1.0pt; border-top: none; height: 21.95pt; mso-border-alt: solid windowtext .5pt; mso-border-left-alt: solid windowtext .5pt; mso-border-top-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt; width: 152.35pt;&quot; width=&quot;203&quot;&gt;
  &lt;div class=&quot;MsoNormal&quot; style=&quot;line-height: 107%; margin-bottom: 8.0pt;&quot;&gt;
2bytes&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;
&lt;/td&gt;
 &lt;/tr&gt;
&lt;tr style=&quot;height: 21.95pt; mso-yfti-irow: 8;&quot;&gt;
  &lt;td style=&quot;border-top: none; border: solid windowtext 1.0pt; height: 21.95pt; mso-border-alt: solid windowtext .5pt; mso-border-top-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt; width: 115.15pt;&quot; width=&quot;154&quot;&gt;
  &lt;div class=&quot;MsoNormal&quot; style=&quot;line-height: 107%; margin-bottom: 8.0pt;&quot;&gt;
&lt;i&gt;unsigned short int&lt;o:p&gt;&lt;/o:p&gt;&lt;/i&gt;&lt;/div&gt;
&lt;/td&gt;
  &lt;td style=&quot;border-bottom: solid windowtext 1.0pt; border-left: none; border-right: solid windowtext 1.0pt; border-top: none; height: 21.95pt; mso-border-alt: solid windowtext .5pt; mso-border-left-alt: solid windowtext .5pt; mso-border-top-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt; width: 2.75in;&quot; width=&quot;264&quot;&gt;
  &lt;div class=&quot;MsoNormal&quot; style=&quot;line-height: 107%; margin-bottom: 8.0pt;&quot;&gt;
0 to
  65,535&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;
&lt;/td&gt;
  &lt;td style=&quot;border-bottom: solid windowtext 1.0pt; border-left: none; border-right: solid windowtext 1.0pt; border-top: none; height: 21.95pt; mso-border-alt: solid windowtext .5pt; mso-border-left-alt: solid windowtext .5pt; mso-border-top-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt; width: 152.35pt;&quot; width=&quot;203&quot;&gt;
  &lt;div class=&quot;MsoNormal&quot; style=&quot;line-height: 107%; margin-bottom: 8.0pt;&quot;&gt;
Range&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;
&lt;/td&gt;
 &lt;/tr&gt;
&lt;tr style=&quot;height: 21.25pt; mso-yfti-irow: 9;&quot;&gt;
  &lt;td style=&quot;border-top: none; border: solid windowtext 1.0pt; height: 21.25pt; mso-border-alt: solid windowtext .5pt; mso-border-top-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt; width: 115.15pt;&quot; width=&quot;154&quot;&gt;
  &lt;div class=&quot;MsoNormal&quot; style=&quot;line-height: 107%; margin-bottom: 8.0pt;&quot;&gt;
&lt;i&gt;signed short int&lt;o:p&gt;&lt;/o:p&gt;&lt;/i&gt;&lt;/div&gt;
&lt;/td&gt;
  &lt;td style=&quot;border-bottom: solid windowtext 1.0pt; border-left: none; border-right: solid windowtext 1.0pt; border-top: none; height: 21.25pt; mso-border-alt: solid windowtext .5pt; mso-border-left-alt: solid windowtext .5pt; mso-border-top-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt; width: 2.75in;&quot; width=&quot;264&quot;&gt;
  &lt;div class=&quot;MsoNormal&quot; style=&quot;line-height: 107%; margin-bottom: 8.0pt;&quot;&gt;
-32768
  to 32767&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;
&lt;/td&gt;
  &lt;td style=&quot;border-bottom: solid windowtext 1.0pt; border-left: none; border-right: solid windowtext 1.0pt; border-top: none; height: 21.25pt; mso-border-alt: solid windowtext .5pt; mso-border-left-alt: solid windowtext .5pt; mso-border-top-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt; width: 152.35pt;&quot; width=&quot;203&quot;&gt;
  &lt;div class=&quot;MsoNormal&quot; style=&quot;line-height: 107%; margin-bottom: 8.0pt;&quot;&gt;
Range&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;
&lt;/td&gt;
 &lt;/tr&gt;
&lt;tr style=&quot;height: 21.95pt; mso-yfti-irow: 10;&quot;&gt;
  &lt;td style=&quot;border-top: none; border: solid windowtext 1.0pt; height: 21.95pt; mso-border-alt: solid windowtext .5pt; mso-border-top-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt; width: 115.15pt;&quot; width=&quot;154&quot;&gt;
  &lt;div class=&quot;MsoNormal&quot; style=&quot;line-height: 107%; margin-bottom: 8.0pt;&quot;&gt;
&lt;i&gt;long int&lt;o:p&gt;&lt;/o:p&gt;&lt;/i&gt;&lt;/div&gt;
&lt;/td&gt;
  &lt;td style=&quot;border-bottom: solid windowtext 1.0pt; border-left: none; border-right: solid windowtext 1.0pt; border-top: none; height: 21.95pt; mso-border-alt: solid windowtext .5pt; mso-border-left-alt: solid windowtext .5pt; mso-border-top-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt; width: 2.75in;&quot; width=&quot;264&quot;&gt;
  &lt;div class=&quot;MsoNormal&quot; style=&quot;line-height: 107%; margin-bottom: 8.0pt;&quot;&gt;
-2,147,483,647
  to 2,147,483,647&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;
&lt;/td&gt;
  &lt;td style=&quot;border-bottom: solid windowtext 1.0pt; border-left: none; border-right: solid windowtext 1.0pt; border-top: none; height: 21.95pt; mso-border-alt: solid windowtext .5pt; mso-border-left-alt: solid windowtext .5pt; mso-border-top-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt; width: 152.35pt;&quot; width=&quot;203&quot;&gt;
  &lt;div class=&quot;MsoNormal&quot; style=&quot;line-height: 107%; margin-bottom: 8.0pt;&quot;&gt;
4bytes&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;
&lt;/td&gt;
 &lt;/tr&gt;
&lt;tr style=&quot;height: 21.95pt; mso-yfti-irow: 11;&quot;&gt;
  &lt;td style=&quot;border-top: none; border: solid windowtext 1.0pt; height: 21.95pt; mso-border-alt: solid windowtext .5pt; mso-border-top-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt; width: 115.15pt;&quot; width=&quot;154&quot;&gt;
  &lt;div class=&quot;MsoNormal&quot; style=&quot;line-height: 107%; margin-bottom: 8.0pt;&quot;&gt;
&lt;i&gt;signed long int&lt;o:p&gt;&lt;/o:p&gt;&lt;/i&gt;&lt;/div&gt;
&lt;/td&gt;
  &lt;td style=&quot;border-bottom: solid windowtext 1.0pt; border-left: none; border-right: solid windowtext 1.0pt; border-top: none; height: 21.95pt; mso-border-alt: solid windowtext .5pt; mso-border-left-alt: solid windowtext .5pt; mso-border-top-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt; width: 2.75in;&quot; width=&quot;264&quot;&gt;
  &lt;div class=&quot;MsoNormal&quot; style=&quot;line-height: 107%; margin-bottom: 8.0pt;&quot;&gt;
same as
  long int&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;
&lt;/td&gt;
  &lt;td style=&quot;border-bottom: solid windowtext 1.0pt; border-left: none; border-right: solid windowtext 1.0pt; border-top: none; height: 21.95pt; mso-border-alt: solid windowtext .5pt; mso-border-left-alt: solid windowtext .5pt; mso-border-top-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt; width: 152.35pt;&quot; width=&quot;203&quot;&gt;
  &lt;div class=&quot;MsoNormal&quot; style=&quot;line-height: 107%; margin-bottom: 8.0pt;&quot;&gt;
4bytes&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;
&lt;/td&gt;
 &lt;/tr&gt;
&lt;tr style=&quot;height: 21.25pt; mso-yfti-irow: 12;&quot;&gt;
  &lt;td style=&quot;border-top: none; border: solid windowtext 1.0pt; height: 21.25pt; mso-border-alt: solid windowtext .5pt; mso-border-top-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt; width: 115.15pt;&quot; width=&quot;154&quot;&gt;
  &lt;div class=&quot;MsoNormal&quot; style=&quot;line-height: 107%; margin-bottom: 8.0pt;&quot;&gt;
&lt;i&gt;unsigned long int&lt;o:p&gt;&lt;/o:p&gt;&lt;/i&gt;&lt;/div&gt;
&lt;/td&gt;
  &lt;td style=&quot;border-bottom: solid windowtext 1.0pt; border-left: none; border-right: solid windowtext 1.0pt; border-top: none; height: 21.25pt; mso-border-alt: solid windowtext .5pt; mso-border-left-alt: solid windowtext .5pt; mso-border-top-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt; width: 2.75in;&quot; width=&quot;264&quot;&gt;
  &lt;div class=&quot;MsoNormal&quot; style=&quot;line-height: 107%; margin-bottom: 8.0pt;&quot;&gt;
0 to
  4,294,967,295&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;
&lt;/td&gt;
  &lt;td style=&quot;border-bottom: solid windowtext 1.0pt; border-left: none; border-right: solid windowtext 1.0pt; border-top: none; height: 21.25pt; mso-border-alt: solid windowtext .5pt; mso-border-left-alt: solid windowtext .5pt; mso-border-top-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt; width: 152.35pt;&quot; width=&quot;203&quot;&gt;
  &lt;div class=&quot;MsoNormal&quot; style=&quot;line-height: 107%; margin-bottom: 8.0pt;&quot;&gt;
4bytes&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;
&lt;/td&gt;
 &lt;/tr&gt;
&lt;tr style=&quot;height: 21.95pt; mso-yfti-irow: 13;&quot;&gt;
  &lt;td style=&quot;border-top: none; border: solid windowtext 1.0pt; height: 21.95pt; mso-border-alt: solid windowtext .5pt; mso-border-top-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt; width: 115.15pt;&quot; width=&quot;154&quot;&gt;
  &lt;div class=&quot;MsoNormal&quot; style=&quot;line-height: 107%; margin-bottom: 8.0pt;&quot;&gt;
&lt;i&gt;float&lt;o:p&gt;&lt;/o:p&gt;&lt;/i&gt;&lt;/div&gt;
&lt;/td&gt;
  &lt;td style=&quot;border-bottom: solid windowtext 1.0pt; border-left: none; border-right: solid windowtext 1.0pt; border-top: none; height: 21.95pt; mso-border-alt: solid windowtext .5pt; mso-border-left-alt: solid windowtext .5pt; mso-border-top-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt; width: 2.75in;&quot; width=&quot;264&quot;&gt;
  &lt;div class=&quot;MsoNormal&quot; style=&quot;line-height: 107%; margin-bottom: 8.0pt;&quot;&gt;
+/- 3.4e
  +/- 38 (~7 digits)&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;
&lt;/td&gt;
  &lt;td style=&quot;border-bottom: solid windowtext 1.0pt; border-left: none; border-right: solid windowtext 1.0pt; border-top: none; height: 21.95pt; mso-border-alt: solid windowtext .5pt; mso-border-left-alt: solid windowtext .5pt; mso-border-top-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt; width: 152.35pt;&quot; width=&quot;203&quot;&gt;
  &lt;div class=&quot;MsoNormal&quot; style=&quot;line-height: 107%; margin-bottom: 8.0pt;&quot;&gt;
4bytes&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;
&lt;/td&gt;
 &lt;/tr&gt;
&lt;tr style=&quot;height: 21.95pt; mso-yfti-irow: 14;&quot;&gt;
  &lt;td style=&quot;border-top: none; border: solid windowtext 1.0pt; height: 21.95pt; mso-border-alt: solid windowtext .5pt; mso-border-top-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt; width: 115.15pt;&quot; width=&quot;154&quot;&gt;
  &lt;div class=&quot;MsoNormal&quot; style=&quot;line-height: 107%; margin-bottom: 8.0pt;&quot;&gt;
&lt;i&gt;double&lt;o:p&gt;&lt;/o:p&gt;&lt;/i&gt;&lt;/div&gt;
&lt;/td&gt;
  &lt;td style=&quot;border-bottom: solid windowtext 1.0pt; border-left: none; border-right: solid windowtext 1.0pt; border-top: none; height: 21.95pt; mso-border-alt: solid windowtext .5pt; mso-border-left-alt: solid windowtext .5pt; mso-border-top-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt; width: 2.75in;&quot; width=&quot;264&quot;&gt;
  &lt;div class=&quot;MsoNormal&quot; style=&quot;line-height: 107%; margin-bottom: 8.0pt;&quot;&gt;
+/- 1.7e
  +/- 308 (~15 digits)&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;
&lt;/td&gt;
  &lt;td style=&quot;border-bottom: solid windowtext 1.0pt; border-left: none; border-right: solid windowtext 1.0pt; border-top: none; height: 21.95pt; mso-border-alt: solid windowtext .5pt; mso-border-left-alt: solid windowtext .5pt; mso-border-top-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt; width: 152.35pt;&quot; width=&quot;203&quot;&gt;
  &lt;div class=&quot;MsoNormal&quot; style=&quot;line-height: 107%; margin-bottom: 8.0pt;&quot;&gt;
8bytes&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;
&lt;/td&gt;
 &lt;/tr&gt;
&lt;tr style=&quot;height: 21.95pt; mso-yfti-irow: 15;&quot;&gt;
  &lt;td style=&quot;border-top: none; border: solid windowtext 1.0pt; height: 21.95pt; mso-border-alt: solid windowtext .5pt; mso-border-top-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt; width: 115.15pt;&quot; width=&quot;154&quot;&gt;
  &lt;div class=&quot;MsoNormal&quot; style=&quot;line-height: 107%; margin-bottom: 8.0pt;&quot;&gt;
&lt;i&gt;long double&lt;o:p&gt;&lt;/o:p&gt;&lt;/i&gt;&lt;/div&gt;
&lt;/td&gt;
  &lt;td style=&quot;border-bottom: solid windowtext 1.0pt; border-left: none; border-right: solid windowtext 1.0pt; border-top: none; height: 21.95pt; mso-border-alt: solid windowtext .5pt; mso-border-left-alt: solid windowtext .5pt; mso-border-top-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt; width: 2.75in;&quot; width=&quot;264&quot;&gt;
  &lt;div class=&quot;MsoNormal&quot; style=&quot;line-height: 107%; margin-bottom: 8.0pt;&quot;&gt;
+/- 1.7e
  +/- 308 (~15 digits)&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;
&lt;/td&gt;
  &lt;td style=&quot;border-bottom: solid windowtext 1.0pt; border-left: none; border-right: solid windowtext 1.0pt; border-top: none; height: 21.95pt; mso-border-alt: solid windowtext .5pt; mso-border-left-alt: solid windowtext .5pt; mso-border-top-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt; width: 152.35pt;&quot; width=&quot;203&quot;&gt;
  &lt;div class=&quot;MsoNormal&quot; style=&quot;line-height: 107%; margin-bottom: 8.0pt;&quot;&gt;
8bytes&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;
&lt;/td&gt;
 &lt;/tr&gt;
&lt;tr style=&quot;height: 21.95pt; mso-yfti-irow: 16; mso-yfti-lastrow: yes;&quot;&gt;
  &lt;td style=&quot;border-top: none; border: solid windowtext 1.0pt; height: 21.95pt; mso-border-alt: solid windowtext .5pt; mso-border-top-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt; width: 115.15pt;&quot; width=&quot;154&quot;&gt;
  &lt;div class=&quot;MsoNormal&quot; style=&quot;line-height: 107%; margin-bottom: 8.0pt;&quot;&gt;
&lt;i&gt;wchar_t&lt;o:p&gt;&lt;/o:p&gt;&lt;/i&gt;&lt;/div&gt;
&lt;/td&gt;
  &lt;td style=&quot;border-bottom: solid windowtext 1.0pt; border-left: none; border-right: solid windowtext 1.0pt; border-top: none; height: 21.95pt; mso-border-alt: solid windowtext .5pt; mso-border-left-alt: solid windowtext .5pt; mso-border-top-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt; width: 2.75in;&quot; width=&quot;264&quot;&gt;
  &lt;div class=&quot;MsoNormal&quot; style=&quot;line-height: 107%; margin-bottom: 8.0pt;&quot;&gt;
1 wide
  character&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;
&lt;/td&gt;
  &lt;td style=&quot;border-bottom: solid windowtext 1.0pt; border-left: none; border-right: solid windowtext 1.0pt; border-top: none; height: 21.95pt; mso-border-alt: solid windowtext .5pt; mso-border-left-alt: solid windowtext .5pt; mso-border-top-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt; width: 152.35pt;&quot; width=&quot;203&quot;&gt;
  &lt;div class=&quot;MsoNormal&quot; style=&quot;line-height: 107%; margin-bottom: 8.0pt;&quot;&gt;
2 or 4
  bytes&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;
&lt;/td&gt;
 &lt;/tr&gt;
&lt;/tbody&gt;&lt;/table&gt;
&lt;/div&gt;
&lt;br /&gt;
&lt;br /&gt;&lt;/div&gt;
</content><link rel='replies' type='application/atom+xml' href='http://tutorialterminal.blogspot.com/feeds/6783944222013787591/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://tutorialterminal.blogspot.com/2014/04/data-types-in-c.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/630550980296798375/posts/default/6783944222013787591'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/630550980296798375/posts/default/6783944222013787591'/><link rel='alternate' type='text/html' href='http://tutorialterminal.blogspot.com/2014/04/data-types-in-c.html' title='Data Types in C++'/><author><name>InfoTuck</name><uri>http://www.blogger.com/profile/17016689498685423358</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='18' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEisgI3Ncil5ilMjxcK3ufYN7TfeFDOgQkOZ0TpqUUwJVOXMGEDnOYfkooN64nDBC41rYBSBo6l3mT6rtuADi6f8GQ8f0-evyYl2l7GHddwgpO-6Sc0xBBiDHiW5RUqG0M8/s1600/*'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgoLYE-B9mVxiTSiXtH33fOpYgMkIqgzC-r0rIOR5qAfH63Kam9J-pf_8RsX52Vv6Dk1EaUE05MdbPnjbL26pn10dxhtdGqskX7RC0NG8V4pNZNzXoC2SU_U8TRntrY5G3bv1B-9ksLf1k/s72-c/C%252B%252B.png" height="72" width="72"/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-630550980296798375.post-6963375647195662306</id><published>2014-04-26T05:33:00.000-07:00</published><updated>2014-04-26T05:33:17.336-07:00</updated><title type='text'>STRUCTURE OF C++ LANGUAGE PROGRAM</title><content type='html'>&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;
&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgoLYE-B9mVxiTSiXtH33fOpYgMkIqgzC-r0rIOR5qAfH63Kam9J-pf_8RsX52Vv6Dk1EaUE05MdbPnjbL26pn10dxhtdGqskX7RC0NG8V4pNZNzXoC2SU_U8TRntrY5G3bv1B-9ksLf1k/s1600/C%252B%252B.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgoLYE-B9mVxiTSiXtH33fOpYgMkIqgzC-r0rIOR5qAfH63Kam9J-pf_8RsX52Vv6Dk1EaUE05MdbPnjbL26pn10dxhtdGqskX7RC0NG8V4pNZNzXoC2SU_U8TRntrY5G3bv1B-9ksLf1k/s1600/C%252B%252B.png&quot; height=&quot;320&quot; width=&quot;320&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: center;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
The best way to under the structure of a program is by using an small and simple example.&lt;br /&gt;
&lt;br /&gt;
Input:&lt;br /&gt;
&lt;br /&gt;
&lt;i&gt;// first program in C++&amp;nbsp;&lt;/i&gt;&lt;br /&gt;
&lt;i&gt;&lt;br /&gt;&lt;/i&gt;
&lt;i&gt;&amp;nbsp;#include &amp;lt;iostream&amp;gt;&amp;nbsp;&lt;/i&gt;&lt;br /&gt;
&lt;i&gt;using namespace std; &amp;nbsp;&lt;/i&gt;&lt;br /&gt;
&lt;i&gt;int main ()&amp;nbsp;&lt;/i&gt;&lt;br /&gt;
&lt;i&gt;{&amp;nbsp;&lt;/i&gt;&lt;br /&gt;
&lt;i&gt;&amp;nbsp;cout &amp;lt;&amp;lt; &quot;Hello World!&quot;;&amp;nbsp;&lt;/i&gt;&lt;br /&gt;
&lt;i&gt;&amp;nbsp;return 0;&amp;nbsp;&lt;/i&gt;&lt;br /&gt;
&lt;i&gt;}&lt;/i&gt; &lt;br /&gt;
&lt;br /&gt;
Output:&lt;br /&gt;
&lt;br /&gt;
&lt;i&gt;Hello World! &amp;nbsp;&lt;/i&gt;&lt;br /&gt;
&lt;br /&gt;
Lets study each step in detail:&lt;br /&gt;
&lt;br /&gt;
&lt;i&gt;// my first program in C++&amp;nbsp;&lt;/i&gt;&lt;br /&gt;
&lt;i&gt;&lt;br /&gt;&lt;/i&gt;
All lines beginning with two slash signs (//) are considered comments and do not have any effect on the behavior of the program&lt;br /&gt;
&lt;br /&gt;
#include &amp;lt;iostream&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Hash sign (#) are directives for the preprocessor. The directive #include &amp;lt;iostream&amp;gt; tells the preprocessor to include the iostream standard file.&lt;br /&gt;
using namespace std; &amp;nbsp;It uses the standard library, and in fact it will be included in most of the source codes.&lt;br /&gt;
&lt;br /&gt;
int main () &amp;nbsp;This line corresponds to the beginning of the definition of the main function. The main function is the pointby where all C++ programs start their execution&lt;br /&gt;
&lt;br /&gt;
cout &amp;lt;&amp;lt; &quot;Hello World!&quot;;&lt;br /&gt;
cout represents the standard output stream in C++&lt;br /&gt;
&lt;br /&gt;
return 0;&lt;br /&gt;
The return statement causes the main function to finish.&lt;br /&gt;
&lt;div&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;/div&gt;
</content><link rel='replies' type='application/atom+xml' href='http://tutorialterminal.blogspot.com/feeds/6963375647195662306/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://tutorialterminal.blogspot.com/2014/04/structure-of-c-language-program.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/630550980296798375/posts/default/6963375647195662306'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/630550980296798375/posts/default/6963375647195662306'/><link rel='alternate' type='text/html' href='http://tutorialterminal.blogspot.com/2014/04/structure-of-c-language-program.html' title='STRUCTURE OF C++ LANGUAGE PROGRAM'/><author><name>InfoTuck</name><uri>http://www.blogger.com/profile/17016689498685423358</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='18' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEisgI3Ncil5ilMjxcK3ufYN7TfeFDOgQkOZ0TpqUUwJVOXMGEDnOYfkooN64nDBC41rYBSBo6l3mT6rtuADi6f8GQ8f0-evyYl2l7GHddwgpO-6Sc0xBBiDHiW5RUqG0M8/s1600/*'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgoLYE-B9mVxiTSiXtH33fOpYgMkIqgzC-r0rIOR5qAfH63Kam9J-pf_8RsX52Vv6Dk1EaUE05MdbPnjbL26pn10dxhtdGqskX7RC0NG8V4pNZNzXoC2SU_U8TRntrY5G3bv1B-9ksLf1k/s72-c/C%252B%252B.png" height="72" width="72"/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-630550980296798375.post-2709257130430319573</id><published>2014-04-25T04:06:00.004-07:00</published><updated>2014-04-25T04:06:55.413-07:00</updated><title type='text'>C++ LANGUAGE: INTRODUCTION</title><content type='html'>&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;
&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEirHZD5CPRlw8DYxqzb_hdMbqpRPhxg8ZCi9K9c8ZYGE8Pj2k0FBPakfEIGf1000ijlS1vkFJc4yoPL1sBid7x-hABFqO6ESs_dnWk-sRxS_Pr3C-KNzuZYr1yQmIik6U_ZVgaStvrHnr0/s1600/C++.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEirHZD5CPRlw8DYxqzb_hdMbqpRPhxg8ZCi9K9c8ZYGE8Pj2k0FBPakfEIGf1000ijlS1vkFJc4yoPL1sBid7x-hABFqO6ESs_dnWk-sRxS_Pr3C-KNzuZYr1yQmIik6U_ZVgaStvrHnr0/s1600/C++.png&quot; height=&quot;320&quot; width=&quot;320&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: left;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
C++ is a general purpose language used for programming that is free-form as well as compiled. C++ is regarded as intermediate level language that is it comprises of both, high-level as well as low-level language features. It provides object oriented, imperative and generic programming features in its programs.&lt;br /&gt;
&lt;br /&gt;
C++ is also standardized by quality check organization the International Organization for Standardization (ISO). C++ was initiated in 1979 by Bjarne Stroustrup working at Bell Labs. Originally it was named as &quot;C with Classes&quot; but in the year 1983, it was renamed to C++ due to its object oriented programming which was an enhancement to C language programming and hence the increment operator was added to C and it became C++ (pronounced as see plus plus).&lt;br /&gt;
Philosophies for developing C++:&lt;br /&gt;
&lt;br /&gt;
• It should be driven by actual problems and the features should be useful immediately in real world programs.&lt;br /&gt;
• Every feature should be easily implementable.&lt;br /&gt;
• Programmers should be completely free to pick their own program style and that style should be supported by C++.&lt;br /&gt;
• Allowing useful feature is of utmost importance rather than preventing possible misuse of C++.&lt;br /&gt;
• Making user created types should have equal support and performance as that of built in types.&lt;br /&gt;
• Any features which you do not use, you never pay for.&lt;br /&gt;
• No language beneath C++&lt;br /&gt;
&lt;div style=&quot;text-align: left;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;br /&gt;&lt;/div&gt;
</content><link rel='replies' type='application/atom+xml' href='http://tutorialterminal.blogspot.com/feeds/2709257130430319573/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://tutorialterminal.blogspot.com/2014/04/c-language-introduction.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/630550980296798375/posts/default/2709257130430319573'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/630550980296798375/posts/default/2709257130430319573'/><link rel='alternate' type='text/html' href='http://tutorialterminal.blogspot.com/2014/04/c-language-introduction.html' title='C++ LANGUAGE: INTRODUCTION'/><author><name>InfoTuck</name><uri>http://www.blogger.com/profile/17016689498685423358</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='18' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEisgI3Ncil5ilMjxcK3ufYN7TfeFDOgQkOZ0TpqUUwJVOXMGEDnOYfkooN64nDBC41rYBSBo6l3mT6rtuADi6f8GQ8f0-evyYl2l7GHddwgpO-6Sc0xBBiDHiW5RUqG0M8/s1600/*'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEirHZD5CPRlw8DYxqzb_hdMbqpRPhxg8ZCi9K9c8ZYGE8Pj2k0FBPakfEIGf1000ijlS1vkFJc4yoPL1sBid7x-hABFqO6ESs_dnWk-sRxS_Pr3C-KNzuZYr1yQmIik6U_ZVgaStvrHnr0/s72-c/C++.png" height="72" width="72"/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-630550980296798375.post-2178641830860554136</id><published>2014-04-24T04:44:00.003-07:00</published><updated>2014-04-24T04:44:51.800-07:00</updated><title type='text'>IMPORTATNT PROGRAMS OF C LANGUAGE</title><content type='html'>&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;
&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhpeSLmqx777gBlZgjJe_cBieDWEGL8zTrODGtD5E4pSSoMDASCIPQNZRCm8XvRwIz6U7ThCTHDlt-kj2-Gt0eN9vONEVQfSV6pGYKdUTPUiIO4kg6boVr_JyWlpPfIgkuMpAWOc0Rew0I/s1600/images+%25281%2529.jpg&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhpeSLmqx777gBlZgjJe_cBieDWEGL8zTrODGtD5E4pSSoMDASCIPQNZRCm8XvRwIz6U7ThCTHDlt-kj2-Gt0eN9vONEVQfSV6pGYKdUTPUiIO4kg6boVr_JyWlpPfIgkuMpAWOc0Rew0I/s1600/images+%25281%2529.jpg&quot; height=&quot;221&quot; width=&quot;320&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: center;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;br /&gt;
&lt;br /&gt;
C language programming is considered to be the basic s of any programming language. so any developer or programmer is assumed to know some basic of C language programming. When we face any interview, the chances are quite high that the interviewer will ask some basic programs of C language because apart from programming skills, it also checks the problem solving skills of an individual.&lt;br /&gt;
&lt;br /&gt;
So here are few important C language programs which are frequently asked in many interviews.&lt;br /&gt;
&lt;br /&gt;
1. FIBONACCI SERIES&lt;br /&gt;
&lt;br /&gt;
&lt;i&gt;/* Fibonacci Series in C language */&lt;/i&gt;&lt;br /&gt;
&lt;i&gt;&lt;br /&gt;&lt;/i&gt;
&lt;i&gt;#include&amp;lt;stdio.h&amp;gt; &amp;nbsp;/* header file */&lt;/i&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;i&gt;int main() &amp;nbsp;/*initiate program*/&lt;/i&gt;&lt;br /&gt;
&lt;i&gt;{&lt;/i&gt;&lt;br /&gt;
&lt;i&gt;&amp;nbsp; &amp;nbsp;int n, first = 0, second = 1, next, c;&lt;/i&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;i&gt;&amp;nbsp; &amp;nbsp;printf(&quot;Enter the number of terms\n&quot;);&lt;/i&gt;&lt;br /&gt;
&lt;i&gt;&amp;nbsp; &amp;nbsp;scanf(&quot;%d&quot;,&amp;amp;n); /*input number*/&lt;/i&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;i&gt;&amp;nbsp; &amp;nbsp;printf(&quot;First %d terms of Fibonacci series are :-\n&quot;,n);&lt;/i&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;i&gt;&amp;nbsp; &amp;nbsp;for ( c = 0 ; c &amp;lt; n ; c++ ) /*initiate loop*/&lt;/i&gt;&lt;br /&gt;
&lt;i&gt;&amp;nbsp; &amp;nbsp;{&lt;/i&gt;&lt;br /&gt;
&lt;i&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; if ( c &amp;lt;= 1 )&lt;/i&gt;&lt;br /&gt;
&lt;i&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;next = c;&lt;/i&gt;&lt;br /&gt;
&lt;i&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; else&lt;/i&gt;&lt;br /&gt;
&lt;i&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; {&lt;/i&gt;&lt;br /&gt;
&lt;i&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;next = first + second;&lt;/i&gt;&lt;br /&gt;
&lt;i&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;first = second;&lt;/i&gt;&lt;br /&gt;
&lt;i&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;second = next;&lt;/i&gt;&lt;br /&gt;
&lt;i&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; }&lt;/i&gt;&lt;br /&gt;
&lt;i&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; printf(&quot;%d\n&quot;,next);&lt;/i&gt;&lt;br /&gt;
&lt;i&gt;&amp;nbsp; &amp;nbsp;}&lt;/i&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;i&gt;&amp;nbsp; &amp;nbsp;return 0; &amp;nbsp;/*display output*/&lt;/i&gt;&lt;br /&gt;
&lt;i&gt;}&lt;/i&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
2. PALINDROME&lt;br /&gt;
&lt;br /&gt;
&lt;i&gt;#include &amp;lt;stdio.h&amp;gt;&lt;/i&gt;&lt;br /&gt;
&lt;i&gt;#include &amp;lt;string.h&amp;gt;&lt;/i&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;i&gt;int main()&lt;/i&gt;&lt;br /&gt;
&lt;i&gt;{&lt;/i&gt;&lt;br /&gt;
&lt;i&gt;&amp;nbsp; &amp;nbsp;char a[100], b[100];&lt;/i&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;i&gt;&amp;nbsp; &amp;nbsp;printf(&quot;Enter the string to check if it is a palindrome\n&quot;);&lt;/i&gt;&lt;br /&gt;
&lt;i&gt;&amp;nbsp; &amp;nbsp;gets(a);&lt;/i&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;i&gt;&amp;nbsp; &amp;nbsp;strcpy(b,a);&lt;/i&gt;&lt;br /&gt;
&lt;i&gt;&amp;nbsp; &amp;nbsp;strrev(b);&lt;/i&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;i&gt;&amp;nbsp; &amp;nbsp;if( strcmp(a,b) == 0 )&lt;/i&gt;&lt;br /&gt;
&lt;i&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; printf(&quot;Entered string is a palindrome.\n&quot;);&lt;/i&gt;&lt;br /&gt;
&lt;i&gt;&amp;nbsp; &amp;nbsp;else&lt;/i&gt;&lt;br /&gt;
&lt;i&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; printf(&quot;Entered string is not a palindrome.\n&quot;);&lt;/i&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;i&gt;&amp;nbsp; &amp;nbsp;return 0;&lt;/i&gt;&lt;br /&gt;
&lt;i&gt;}&lt;/i&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
3. ARMSTRONG NUMBER&lt;br /&gt;
&lt;br /&gt;
&lt;i&gt;#include &amp;lt;stdio.h&amp;gt;&lt;/i&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;i&gt;int main()&lt;/i&gt;&lt;br /&gt;
&lt;i&gt;{&lt;/i&gt;&lt;br /&gt;
&lt;i&gt;&amp;nbsp; &amp;nbsp;int number, sum = 0, temp, remainder;&lt;/i&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;i&gt;&amp;nbsp; &amp;nbsp;printf(&quot;Enter an integer\n&quot;);&lt;/i&gt;&lt;br /&gt;
&lt;i&gt;&amp;nbsp; &amp;nbsp;scanf(&quot;%d&quot;,&amp;amp;number);&lt;/i&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;i&gt;&amp;nbsp; &amp;nbsp;temp = number;&lt;/i&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;i&gt;&amp;nbsp; &amp;nbsp;while( temp != 0 )&lt;/i&gt;&lt;br /&gt;
&lt;i&gt;&amp;nbsp; &amp;nbsp;{&lt;/i&gt;&lt;br /&gt;
&lt;i&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; remainder = temp%10;&lt;/i&gt;&lt;br /&gt;
&lt;i&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; sum = sum + remainder*remainder*remainder;&lt;/i&gt;&lt;br /&gt;
&lt;i&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; temp = temp/10;&lt;/i&gt;&lt;br /&gt;
&lt;i&gt;&amp;nbsp; &amp;nbsp;}&lt;/i&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;i&gt;&amp;nbsp; &amp;nbsp;if ( number == sum )&lt;/i&gt;&lt;br /&gt;
&lt;i&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; printf(&quot;Entered number is an armstrong number.\n&quot;);&lt;/i&gt;&lt;br /&gt;
&lt;i&gt;&amp;nbsp; &amp;nbsp;else&lt;/i&gt;&lt;br /&gt;
&lt;i&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; printf(&quot;Entered number is not an armstrong number.\n&quot;);&lt;/i&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;i&gt;&amp;nbsp; &amp;nbsp;return 0;&lt;/i&gt;&lt;br /&gt;
&lt;i&gt;}&lt;/i&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
4. FACTORIAL OF A NUMBER&lt;br /&gt;
&lt;br /&gt;
&lt;i&gt;#include &amp;lt;stdio.h&amp;gt;&lt;/i&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;i&gt;int main()&lt;/i&gt;&lt;br /&gt;
&lt;i&gt;{&lt;/i&gt;&lt;br /&gt;
&lt;i&gt;&amp;nbsp; int c, n, fact = 1;&lt;/i&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;i&gt;&amp;nbsp; printf(&quot;Enter a number to calculate it&#39;s factorial\n&quot;);&lt;/i&gt;&lt;br /&gt;
&lt;i&gt;&amp;nbsp; scanf(&quot;%d&quot;, &amp;amp;n);&lt;/i&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;i&gt;&amp;nbsp; for (c = 1; c &amp;lt;= n; c++)&lt;/i&gt;&lt;br /&gt;
&lt;i&gt;&amp;nbsp; &amp;nbsp; fact = fact * c;&lt;/i&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;i&gt;&amp;nbsp; printf(&quot;Factorial of %d = %d\n&quot;, n, fact);&lt;/i&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;i&gt;&amp;nbsp; return 0;&lt;/i&gt;&lt;br /&gt;
&lt;i&gt;}&lt;/i&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
5. PRIME NUMBER OF A NUMBER&lt;br /&gt;
&lt;br /&gt;
&lt;i&gt;#include&amp;lt;stdio.h&amp;gt;&lt;/i&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;i&gt;int main()&lt;/i&gt;&lt;br /&gt;
&lt;i&gt;{&lt;/i&gt;&lt;br /&gt;
&lt;i&gt;&amp;nbsp; &amp;nbsp;int n, i = 3, count, c;&lt;/i&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;i&gt;&amp;nbsp; &amp;nbsp;printf(&quot;Enter the number of prime numbers required\n&quot;);&lt;/i&gt;&lt;br /&gt;
&lt;i&gt;&amp;nbsp; &amp;nbsp;scanf(&quot;%d&quot;,&amp;amp;n);&lt;/i&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;i&gt;&amp;nbsp; &amp;nbsp;if ( n &amp;gt;= 1 )&lt;/i&gt;&lt;br /&gt;
&lt;i&gt;&amp;nbsp; &amp;nbsp;{&lt;/i&gt;&lt;br /&gt;
&lt;i&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; printf(&quot;First %d prime numbers are :\n&quot;,n);&lt;/i&gt;&lt;br /&gt;
&lt;i&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; printf(&quot;2\n&quot;);&lt;/i&gt;&lt;br /&gt;
&lt;i&gt;&amp;nbsp; &amp;nbsp;}&lt;/i&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;i&gt;&amp;nbsp; &amp;nbsp;for ( count = 2 ; count &amp;lt;= n ; &amp;nbsp;)&lt;/i&gt;&lt;br /&gt;
&lt;i&gt;&amp;nbsp; &amp;nbsp;{&lt;/i&gt;&lt;br /&gt;
&lt;i&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; for ( c = 2 ; c &amp;lt;= i - 1 ; c++ )&lt;/i&gt;&lt;br /&gt;
&lt;i&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; {&lt;/i&gt;&lt;br /&gt;
&lt;i&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;if ( i%c == 0 )&lt;/i&gt;&lt;br /&gt;
&lt;i&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; break;&lt;/i&gt;&lt;br /&gt;
&lt;i&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; }&lt;/i&gt;&lt;br /&gt;
&lt;i&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; if ( c == i )&lt;/i&gt;&lt;br /&gt;
&lt;i&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; {&lt;/i&gt;&lt;br /&gt;
&lt;i&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;printf(&quot;%d\n&quot;,i);&lt;/i&gt;&lt;br /&gt;
&lt;i&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;count++;&lt;/i&gt;&lt;br /&gt;
&lt;i&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; }&lt;/i&gt;&lt;br /&gt;
&lt;i&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; i++;&lt;/i&gt;&lt;br /&gt;
&lt;i&gt;&amp;nbsp; &amp;nbsp;}&lt;/i&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;i&gt;&amp;nbsp; &amp;nbsp;return 0;&lt;/i&gt;&lt;br /&gt;
&lt;i&gt;}&lt;/i&gt;&lt;/div&gt;
</content><link rel='replies' type='application/atom+xml' href='http://tutorialterminal.blogspot.com/feeds/2178641830860554136/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://tutorialterminal.blogspot.com/2014/04/importatnt-programs-of-c-language.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/630550980296798375/posts/default/2178641830860554136'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/630550980296798375/posts/default/2178641830860554136'/><link rel='alternate' type='text/html' href='http://tutorialterminal.blogspot.com/2014/04/importatnt-programs-of-c-language.html' title='IMPORTATNT PROGRAMS OF C LANGUAGE'/><author><name>InfoTuck</name><uri>http://www.blogger.com/profile/17016689498685423358</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='18' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEisgI3Ncil5ilMjxcK3ufYN7TfeFDOgQkOZ0TpqUUwJVOXMGEDnOYfkooN64nDBC41rYBSBo6l3mT6rtuADi6f8GQ8f0-evyYl2l7GHddwgpO-6Sc0xBBiDHiW5RUqG0M8/s1600/*'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhpeSLmqx777gBlZgjJe_cBieDWEGL8zTrODGtD5E4pSSoMDASCIPQNZRCm8XvRwIz6U7ThCTHDlt-kj2-Gt0eN9vONEVQfSV6pGYKdUTPUiIO4kg6boVr_JyWlpPfIgkuMpAWOc0Rew0I/s72-c/images+%25281%2529.jpg" height="72" width="72"/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-630550980296798375.post-165696311616564889</id><published>2014-04-23T00:22:00.001-07:00</published><updated>2014-04-23T00:22:12.025-07:00</updated><title type='text'>HEADERS IN C LANGUAGE</title><content type='html'>&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;
&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhZeiPrxMRsiJTDn6xQDEQ-qC7KFdLRUTQQVUwg90b9n8NQGUWK2zap3LgkhXa6Icw_dclcylJkQ0J-sfh8jDDjWUOvHyRFivlX9VTsBPvVkCFdqIxGMtsYKa0HFcH4HZoNAogVZPdqA8k/s1600/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;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhZeiPrxMRsiJTDn6xQDEQ-qC7KFdLRUTQQVUwg90b9n8NQGUWK2zap3LgkhXa6Icw_dclcylJkQ0J-sfh8jDDjWUOvHyRFivlX9VTsBPvVkCFdqIxGMtsYKa0HFcH4HZoNAogVZPdqA8k/s1600/C.jpg&quot; height=&quot;237&quot; width=&quot;400&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: center;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;br /&gt;
A header file is a file with extension .h which contains C function declarations and macro definitions and to be shared between many several source files. There are two kinds of header files: the files that the programmer writes and the files that come with your compiler.&lt;br /&gt;
You request the use of a header file in your program by including it, with the C preprocessing directive #include like you must have seen inclusion of stdio.h header file as wll which comes along with the compiler.&lt;br /&gt;
&lt;br /&gt;
Including a header file is equivalent to copying of the content of the header file but we do not do it because it will be very much error-prone and it is not a good idea to copy the content of header file into the source files, especially if there are multiple source file comprising our program.&lt;br /&gt;
In a simple practice program in C language, the place where we keep all the macros, constants, system wide global variables and function prototypes in the header files and include that header file wherever it is required.&lt;br /&gt;
&lt;br /&gt;
SYNTAX:&lt;br /&gt;
&lt;br /&gt;
Both user and system header files are included using the preprocessing directive #include. It has following two forms:&lt;br /&gt;
&lt;br /&gt;
#include &amp;lt;abc&amp;gt;&lt;br /&gt;
This form of header is used in system header files. In this, it searches for a file named &quot;abc&quot; in a standard list of system directories. You can prepend directories to this list with the -I option while compiling your source code.&lt;br /&gt;
&lt;br /&gt;
#include &quot;abc&quot;&lt;br /&gt;
This form of header file is used in your own programs .In this header, it searches for a file named abc in the directory containing the current file. You can also prepend directories to this list with the -I option while compiling your source code.&lt;br /&gt;
&lt;div&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;/div&gt;
</content><link rel='replies' type='application/atom+xml' href='http://tutorialterminal.blogspot.com/feeds/165696311616564889/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://tutorialterminal.blogspot.com/2014/04/headers-in-c-language.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/630550980296798375/posts/default/165696311616564889'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/630550980296798375/posts/default/165696311616564889'/><link rel='alternate' type='text/html' href='http://tutorialterminal.blogspot.com/2014/04/headers-in-c-language.html' title='HEADERS IN C LANGUAGE'/><author><name>InfoTuck</name><uri>http://www.blogger.com/profile/17016689498685423358</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='18' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEisgI3Ncil5ilMjxcK3ufYN7TfeFDOgQkOZ0TpqUUwJVOXMGEDnOYfkooN64nDBC41rYBSBo6l3mT6rtuADi6f8GQ8f0-evyYl2l7GHddwgpO-6Sc0xBBiDHiW5RUqG0M8/s1600/*'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhZeiPrxMRsiJTDn6xQDEQ-qC7KFdLRUTQQVUwg90b9n8NQGUWK2zap3LgkhXa6Icw_dclcylJkQ0J-sfh8jDDjWUOvHyRFivlX9VTsBPvVkCFdqIxGMtsYKa0HFcH4HZoNAogVZPdqA8k/s72-c/C.jpg" height="72" width="72"/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-630550980296798375.post-1214994271141363018</id><published>2014-04-21T22:47:00.003-07:00</published><updated>2014-04-21T22:47:52.166-07:00</updated><title type='text'>SCOPE OF VARIABLE IN C LANGUAGE</title><content type='html'>&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;
&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhpeSLmqx777gBlZgjJe_cBieDWEGL8zTrODGtD5E4pSSoMDASCIPQNZRCm8XvRwIz6U7ThCTHDlt-kj2-Gt0eN9vONEVQfSV6pGYKdUTPUiIO4kg6boVr_JyWlpPfIgkuMpAWOc0Rew0I/s1600/images+%25281%2529.jpg&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhpeSLmqx777gBlZgjJe_cBieDWEGL8zTrODGtD5E4pSSoMDASCIPQNZRCm8XvRwIz6U7ThCTHDlt-kj2-Gt0eN9vONEVQfSV6pGYKdUTPUiIO4kg6boVr_JyWlpPfIgkuMpAWOc0Rew0I/s1600/images+%25281%2529.jpg&quot; height=&quot;276&quot; width=&quot;400&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: center;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: center;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
SCOPE: A scope in any programming language is the region of that program where this defined variables can have their own existence and beyond this scope of a particular variable, that variable can&#39;t be accessed.&lt;br /&gt;
What is &amp;nbsp;Local Variable?&lt;br /&gt;
Variable whose existence is known only to the main program or functions are called local variables. Local variables are declared within the main program or a function.&lt;br /&gt;
Syntax&lt;br /&gt;
auto data_type identifier&lt;br /&gt;
&lt;br /&gt;
What is The Scope of Local Variables?&lt;br /&gt;
Local variables have a scope inside the function it is declared and not outside it.&lt;br /&gt;
&lt;br /&gt;
What is Lifetime?&lt;br /&gt;
The time period for which a variable exists in the memory is known as lifetime of variable.&lt;br /&gt;
&lt;br /&gt;
What is Lifetime of Local Variable?&lt;br /&gt;
Lifetime of a local variables starts the moment when programmer enters the function inside &amp;nbsp;which the variable is declared and gets destroyed when programmer exists from the function.&lt;br /&gt;
&lt;br /&gt;
What is Global Variable?&lt;br /&gt;
Variables whose existence is known to the both main() as well as other functions are called global variables. Global variables are declared outside the main() and other functions.&lt;br /&gt;
What is The Scope of Global Variable?&lt;br /&gt;
Global variables as the name says can be accessed from any part of a program and can be used in multiple functions. for this, the variables are defined before the &quot;main&quot; function&lt;br /&gt;
&lt;br /&gt;
What is The Lifetime of Global Variable?&lt;br /&gt;
Global variables are bound to exist in the memory for as long as the program is in running state. These variables get are destroyed as soon as the program terminates. These variables occupy memory for a longer duration in comparison with than local variables.&lt;/div&gt;
</content><link rel='replies' type='application/atom+xml' href='http://tutorialterminal.blogspot.com/feeds/1214994271141363018/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://tutorialterminal.blogspot.com/2014/04/scope-of-variable-in-c-language.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/630550980296798375/posts/default/1214994271141363018'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/630550980296798375/posts/default/1214994271141363018'/><link rel='alternate' type='text/html' href='http://tutorialterminal.blogspot.com/2014/04/scope-of-variable-in-c-language.html' title='SCOPE OF VARIABLE IN C LANGUAGE'/><author><name>InfoTuck</name><uri>http://www.blogger.com/profile/17016689498685423358</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='18' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEisgI3Ncil5ilMjxcK3ufYN7TfeFDOgQkOZ0TpqUUwJVOXMGEDnOYfkooN64nDBC41rYBSBo6l3mT6rtuADi6f8GQ8f0-evyYl2l7GHddwgpO-6Sc0xBBiDHiW5RUqG0M8/s1600/*'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhpeSLmqx777gBlZgjJe_cBieDWEGL8zTrODGtD5E4pSSoMDASCIPQNZRCm8XvRwIz6U7ThCTHDlt-kj2-Gt0eN9vONEVQfSV6pGYKdUTPUiIO4kg6boVr_JyWlpPfIgkuMpAWOc0Rew0I/s72-c/images+%25281%2529.jpg" height="72" width="72"/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-630550980296798375.post-6117182712988207631</id><published>2014-04-21T03:20:00.001-07:00</published><updated>2014-04-21T03:20:17.751-07:00</updated><title type='text'>INPUT/OUTPUT FILES IN C LANUGAGE</title><content type='html'>&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;
&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhpeSLmqx777gBlZgjJe_cBieDWEGL8zTrODGtD5E4pSSoMDASCIPQNZRCm8XvRwIz6U7ThCTHDlt-kj2-Gt0eN9vONEVQfSV6pGYKdUTPUiIO4kg6boVr_JyWlpPfIgkuMpAWOc0Rew0I/s1600/images+%25281%2529.jpg&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhpeSLmqx777gBlZgjJe_cBieDWEGL8zTrODGtD5E4pSSoMDASCIPQNZRCm8XvRwIz6U7ThCTHDlt-kj2-Gt0eN9vONEVQfSV6pGYKdUTPUiIO4kg6boVr_JyWlpPfIgkuMpAWOc0Rew0I/s1600/images+%25281%2529.jpg&quot; height=&quot;276&quot; width=&quot;400&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: center;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;br /&gt;
In C programming, when the program is closed, all the data and results are lost. In order to keep that enormous amount of data safe from getting deleted and used for future purpose, we need to form files to save those data into secondary memory. For these, different commands were needed to solve our purpose of creating, editing and closing of a file.&lt;br /&gt;
There are a lot of functions in C language for handling of input and output of a file. Here we’ll show you some of important commands for you to increase your understanding with C language programming.&lt;br /&gt;
High level file I/O functions can be divided into 2 categories as:&lt;br /&gt;
1. Text file&lt;br /&gt;
2. Binary file&lt;br /&gt;
File Operations&lt;br /&gt;
&lt;br /&gt;
1. Create a new file&lt;br /&gt;
2. Open an existing file&lt;br /&gt;
3. Read from and write information to a file&lt;br /&gt;
4. Close a file&lt;br /&gt;
Working with file&lt;br /&gt;
To working with a file, we need to declare pointer of that type of file. This declaration is required to communicate between a file and a program.&lt;br /&gt;
FILE *ptr;&lt;br /&gt;
Opening a file&lt;br /&gt;
In C language, a file is opened using a library function fopen().&lt;br /&gt;
The syntax used for opening a file in standard I/O is:&lt;br /&gt;
ptr=fopen(&quot;fileopen&quot;,&quot;mode&quot;)&lt;br /&gt;
&lt;br /&gt;
For Example:&lt;br /&gt;
fopen(&quot;E:\\cprog\file.txt&quot;,&quot;w&quot;);&lt;br /&gt;
&lt;br /&gt;
Here, E:\\cprog\file.txt is the location where file is to be created while &quot;w&quot; represents the mode for writing.&lt;br /&gt;
Here, the program.txt file is opened for writing mode.&lt;br /&gt;
&lt;div&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div&gt;
&lt;table border=&quot;1&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot; class=&quot;MsoTableGrid&quot; style=&quot;border-collapse: collapse; border: none; mso-border-alt: solid windowtext .5pt; mso-padding-alt: 0in 5.4pt 0in 5.4pt; mso-yfti-tbllook: 1184; width: 644px;&quot;&gt;
 &lt;tbody&gt;
&lt;tr&gt;
  &lt;td style=&quot;border: solid windowtext 1.0pt; mso-border-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt; width: 71.75pt;&quot; valign=&quot;top&quot; width=&quot;96&quot;&gt;
  &lt;div class=&quot;MsoNormal&quot; style=&quot;line-height: 16.9pt; margin-bottom: 12.0pt; margin-left: 0in; margin-right: 0in; margin-top: 6.0pt; vertical-align: baseline;&quot;&gt;
&lt;span style=&quot;font-size: 14pt; letter-spacing: 0.45pt;&quot;&gt;File
  Mode&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/div&gt;
&lt;/td&gt;
  &lt;td style=&quot;border-left: none; border: solid windowtext 1.0pt; mso-border-alt: solid windowtext .5pt; mso-border-left-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt; width: 211.5pt;&quot; valign=&quot;top&quot; width=&quot;282&quot;&gt;
  &lt;div class=&quot;MsoNormal&quot; style=&quot;line-height: 16.9pt; margin-bottom: 12.0pt; margin-left: 0in; margin-right: 0in; margin-top: 6.0pt; vertical-align: baseline;&quot;&gt;
&lt;span style=&quot;font-size: 14pt; letter-spacing: 0.45pt;&quot;&gt;Meaning
  of Mode&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/div&gt;
&lt;/td&gt;
  &lt;td style=&quot;border-left: none; border: solid windowtext 1.0pt; mso-border-alt: solid windowtext .5pt; mso-border-left-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt; width: 200.1pt;&quot; valign=&quot;top&quot; width=&quot;267&quot;&gt;
  &lt;div class=&quot;MsoNormal&quot; style=&quot;line-height: 16.9pt; margin-bottom: 12.0pt; margin-left: 0in; margin-right: 0in; margin-top: 6.0pt; vertical-align: baseline;&quot;&gt;
&lt;span style=&quot;font-size: 14pt; letter-spacing: 0.45pt;&quot;&gt;During
  Inexistence of that file&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/div&gt;
&lt;/td&gt;
 &lt;/tr&gt;
&lt;tr&gt;
  &lt;td style=&quot;border-top: none; border: solid windowtext 1.0pt; mso-border-alt: solid windowtext .5pt; mso-border-top-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt; width: 71.75pt;&quot; valign=&quot;top&quot; width=&quot;96&quot;&gt;
  &lt;div class=&quot;MsoNormal&quot; style=&quot;line-height: 16.9pt; margin-bottom: 12.0pt; margin-left: 0in; margin-right: 0in; margin-top: 6.0pt; vertical-align: baseline;&quot;&gt;
&lt;span style=&quot;font-size: 14pt; letter-spacing: 0.45pt;&quot;&gt;r&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/div&gt;
&lt;/td&gt;
  &lt;td style=&quot;border-bottom: solid windowtext 1.0pt; border-left: none; border-right: solid windowtext 1.0pt; border-top: none; mso-border-alt: solid windowtext .5pt; mso-border-left-alt: solid windowtext .5pt; mso-border-top-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt; width: 211.5pt;&quot; valign=&quot;top&quot; width=&quot;282&quot;&gt;
  &lt;div class=&quot;MsoNormal&quot; style=&quot;line-height: 16.9pt; margin-bottom: 12.0pt; margin-left: 0in; margin-right: 0in; margin-top: 6.0pt; vertical-align: baseline;&quot;&gt;
&lt;span style=&quot;font-size: 14pt; letter-spacing: 0.45pt;&quot;&gt;Open
  for reading&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/div&gt;
&lt;/td&gt;
  &lt;td style=&quot;border-bottom: solid windowtext 1.0pt; border-left: none; border-right: solid windowtext 1.0pt; border-top: none; mso-border-alt: solid windowtext .5pt; mso-border-left-alt: solid windowtext .5pt; mso-border-top-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt; width: 200.1pt;&quot; valign=&quot;top&quot; width=&quot;267&quot;&gt;
  &lt;div class=&quot;MsoNormal&quot; style=&quot;line-height: 16.9pt; margin-bottom: 12.0pt; margin-left: 0in; margin-right: 0in; margin-top: 6.0pt; vertical-align: baseline;&quot;&gt;
&lt;span style=&quot;font-size: 14pt; letter-spacing: 0.45pt;&quot;&gt;fopen()
  returns NULL&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/div&gt;
&lt;/td&gt;
 &lt;/tr&gt;
&lt;tr&gt;
  &lt;td style=&quot;border-top: none; border: solid windowtext 1.0pt; mso-border-alt: solid windowtext .5pt; mso-border-top-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt; width: 71.75pt;&quot; valign=&quot;top&quot; width=&quot;96&quot;&gt;
  &lt;div class=&quot;MsoNormal&quot; style=&quot;line-height: 16.9pt; margin-bottom: 12.0pt; margin-left: 0in; margin-right: 0in; margin-top: 6.0pt; vertical-align: baseline;&quot;&gt;
&lt;span style=&quot;font-size: 14pt; letter-spacing: 0.45pt;&quot;&gt;w&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/div&gt;
&lt;/td&gt;
  &lt;td style=&quot;border-bottom: solid windowtext 1.0pt; border-left: none; border-right: solid windowtext 1.0pt; border-top: none; mso-border-alt: solid windowtext .5pt; mso-border-left-alt: solid windowtext .5pt; mso-border-top-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt; width: 211.5pt;&quot; valign=&quot;top&quot; width=&quot;282&quot;&gt;
  &lt;div class=&quot;MsoNormal&quot; style=&quot;line-height: 16.9pt; margin-bottom: 12.0pt; margin-left: 0in; margin-right: 0in; margin-top: 6.0pt; vertical-align: baseline;&quot;&gt;
&lt;span style=&quot;font-size: 14pt; letter-spacing: 0.45pt;&quot;&gt;Open
  for writing&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/div&gt;
&lt;/td&gt;
  &lt;td style=&quot;border-bottom: solid windowtext 1.0pt; border-left: none; border-right: solid windowtext 1.0pt; border-top: none; mso-border-alt: solid windowtext .5pt; mso-border-left-alt: solid windowtext .5pt; mso-border-top-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt; width: 200.1pt;&quot; valign=&quot;top&quot; width=&quot;267&quot;&gt;
  &lt;div class=&quot;MsoNormal&quot; style=&quot;line-height: 16.9pt; margin-bottom: 12.0pt; margin-left: 0in; margin-right: 0in; margin-top: 6.0pt; vertical-align: baseline;&quot;&gt;
&lt;span style=&quot;font-size: 14pt; letter-spacing: 0.45pt;&quot;&gt;File
  will be created&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/div&gt;
&lt;/td&gt;
 &lt;/tr&gt;
&lt;tr&gt;
  &lt;td style=&quot;border-top: none; border: solid windowtext 1.0pt; mso-border-alt: solid windowtext .5pt; mso-border-top-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt; width: 71.75pt;&quot; valign=&quot;top&quot; width=&quot;96&quot;&gt;
  &lt;div class=&quot;MsoNormal&quot; style=&quot;line-height: 16.9pt; margin-bottom: 12.0pt; margin-left: 0in; margin-right: 0in; margin-top: 6.0pt; vertical-align: baseline;&quot;&gt;
&lt;span style=&quot;font-size: 14pt; letter-spacing: 0.45pt;&quot;&gt;a&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/div&gt;
&lt;/td&gt;
  &lt;td style=&quot;border-bottom: solid windowtext 1.0pt; border-left: none; border-right: solid windowtext 1.0pt; border-top: none; mso-border-alt: solid windowtext .5pt; mso-border-left-alt: solid windowtext .5pt; mso-border-top-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt; width: 211.5pt;&quot; valign=&quot;top&quot; width=&quot;282&quot;&gt;
  &lt;div class=&quot;MsoNormal&quot; style=&quot;line-height: 16.9pt; margin-bottom: 12.0pt; margin-left: 0in; margin-right: 0in; margin-top: 6.0pt; vertical-align: baseline;&quot;&gt;
&lt;span style=&quot;font-size: 14pt; letter-spacing: 0.45pt;&quot;&gt;Open
  for edit/append&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/div&gt;
&lt;/td&gt;
  &lt;td style=&quot;border-bottom: solid windowtext 1.0pt; border-left: none; border-right: solid windowtext 1.0pt; border-top: none; mso-border-alt: solid windowtext .5pt; mso-border-left-alt: solid windowtext .5pt; mso-border-top-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt; width: 200.1pt;&quot; valign=&quot;top&quot; width=&quot;267&quot;&gt;
  &lt;div class=&quot;MsoNormal&quot; style=&quot;line-height: 16.9pt; margin-bottom: 12.0pt; margin-left: 0in; margin-right: 0in; margin-top: 6.0pt; vertical-align: baseline;&quot;&gt;
&lt;span style=&quot;font-size: 14pt; letter-spacing: 0.45pt;&quot;&gt;File
  will be created&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/div&gt;
&lt;/td&gt;
 &lt;/tr&gt;
&lt;tr&gt;
  &lt;td style=&quot;border-top: none; border: solid windowtext 1.0pt; mso-border-alt: solid windowtext .5pt; mso-border-top-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt; width: 71.75pt;&quot; valign=&quot;top&quot; width=&quot;96&quot;&gt;
  &lt;div class=&quot;MsoNormal&quot; style=&quot;line-height: 16.9pt; margin-bottom: 12.0pt; margin-left: 0in; margin-right: 0in; margin-top: 6.0pt; vertical-align: baseline;&quot;&gt;
&lt;span style=&quot;font-size: 14pt; letter-spacing: 0.45pt;&quot;&gt;r+&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/div&gt;
&lt;/td&gt;
  &lt;td style=&quot;border-bottom: solid windowtext 1.0pt; border-left: none; border-right: solid windowtext 1.0pt; border-top: none; mso-border-alt: solid windowtext .5pt; mso-border-left-alt: solid windowtext .5pt; mso-border-top-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt; width: 211.5pt;&quot; valign=&quot;top&quot; width=&quot;282&quot;&gt;
  &lt;div class=&quot;MsoNormal&quot; style=&quot;line-height: 16.9pt; margin-bottom: 12.0pt; margin-left: 0in; margin-right: 0in; margin-top: 6.0pt; vertical-align: baseline;&quot;&gt;
&lt;span style=&quot;font-size: 14pt; letter-spacing: 0.45pt;&quot;&gt;Open
  for both reading and writing&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/div&gt;
&lt;/td&gt;
  &lt;td style=&quot;border-bottom: solid windowtext 1.0pt; border-left: none; border-right: solid windowtext 1.0pt; border-top: none; mso-border-alt: solid windowtext .5pt; mso-border-left-alt: solid windowtext .5pt; mso-border-top-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt; width: 200.1pt;&quot; valign=&quot;top&quot; width=&quot;267&quot;&gt;
  &lt;div class=&quot;MsoNormal&quot; style=&quot;line-height: 16.9pt; margin-bottom: 12.0pt; margin-left: 0in; margin-right: 0in; margin-top: 6.0pt; vertical-align: baseline;&quot;&gt;
&lt;span style=&quot;font-size: 14pt; letter-spacing: 0.45pt;&quot;&gt;fopen()
  returns NULL&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/div&gt;
&lt;/td&gt;
 &lt;/tr&gt;
&lt;tr&gt;
  &lt;td style=&quot;border-top: none; border: solid windowtext 1.0pt; mso-border-alt: solid windowtext .5pt; mso-border-top-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt; width: 71.75pt;&quot; valign=&quot;top&quot; width=&quot;96&quot;&gt;
  &lt;div class=&quot;MsoNormal&quot; style=&quot;line-height: 16.9pt; margin-bottom: 12.0pt; margin-left: 0in; margin-right: 0in; margin-top: 6.0pt; vertical-align: baseline;&quot;&gt;
&lt;span style=&quot;font-size: 14pt; letter-spacing: 0.45pt;&quot;&gt;w+&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/div&gt;
&lt;/td&gt;
  &lt;td style=&quot;border-bottom: solid windowtext 1.0pt; border-left: none; border-right: solid windowtext 1.0pt; border-top: none; mso-border-alt: solid windowtext .5pt; mso-border-left-alt: solid windowtext .5pt; mso-border-top-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt; width: 211.5pt;&quot; valign=&quot;top&quot; width=&quot;282&quot;&gt;
  &lt;div class=&quot;MsoNormal&quot; style=&quot;line-height: 16.9pt; margin-bottom: 12.0pt; margin-left: 0in; margin-right: 0in; margin-top: 6.0pt; vertical-align: baseline;&quot;&gt;
&lt;span style=&quot;font-size: 14pt; letter-spacing: 0.45pt;&quot;&gt;Open
  for both reading and writing&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/div&gt;
&lt;/td&gt;
  &lt;td style=&quot;border-bottom: solid windowtext 1.0pt; border-left: none; border-right: solid windowtext 1.0pt; border-top: none; mso-border-alt: solid windowtext .5pt; mso-border-left-alt: solid windowtext .5pt; mso-border-top-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt; width: 200.1pt;&quot; valign=&quot;top&quot; width=&quot;267&quot;&gt;
  &lt;div class=&quot;MsoNormal&quot; style=&quot;line-height: 16.9pt; margin-bottom: 12.0pt; margin-left: 0in; margin-right: 0in; margin-top: 6.0pt; vertical-align: baseline;&quot;&gt;
&lt;span style=&quot;font-size: 14pt; letter-spacing: 0.45pt;&quot;&gt;File
  will be created&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/div&gt;
&lt;/td&gt;
 &lt;/tr&gt;
&lt;tr&gt;
  &lt;td style=&quot;border-top: none; border: solid windowtext 1.0pt; mso-border-alt: solid windowtext .5pt; mso-border-top-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt; width: 71.75pt;&quot; valign=&quot;top&quot; width=&quot;96&quot;&gt;
  &lt;div class=&quot;MsoNormal&quot; style=&quot;line-height: 16.9pt; margin-bottom: 12.0pt; margin-left: 0in; margin-right: 0in; margin-top: 6.0pt; vertical-align: baseline;&quot;&gt;
&lt;span style=&quot;font-size: 14pt; letter-spacing: 0.45pt;&quot;&gt;a+&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/div&gt;
&lt;/td&gt;
  &lt;td style=&quot;border-bottom: solid windowtext 1.0pt; border-left: none; border-right: solid windowtext 1.0pt; border-top: none; mso-border-alt: solid windowtext .5pt; mso-border-left-alt: solid windowtext .5pt; mso-border-top-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt; width: 211.5pt;&quot; valign=&quot;top&quot; width=&quot;282&quot;&gt;
  &lt;div class=&quot;MsoNormal&quot; style=&quot;line-height: 16.9pt; margin-bottom: 12.0pt; margin-left: 0in; margin-right: 0in; margin-top: 6.0pt; vertical-align: baseline;&quot;&gt;
&lt;span style=&quot;font-size: 14pt; letter-spacing: 0.45pt;&quot;&gt;Open
  for both reading and appending&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/div&gt;
&lt;/td&gt;
  &lt;td style=&quot;border-bottom: solid windowtext 1.0pt; border-left: none; border-right: solid windowtext 1.0pt; border-top: none; mso-border-alt: solid windowtext .5pt; mso-border-left-alt: solid windowtext .5pt; mso-border-top-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt; width: 200.1pt;&quot; valign=&quot;top&quot; width=&quot;267&quot;&gt;
  &lt;div class=&quot;MsoNormal&quot; style=&quot;line-height: 16.9pt; margin-bottom: 12.0pt; margin-left: 0in; margin-right: 0in; margin-top: 6.0pt; vertical-align: baseline;&quot;&gt;
&lt;span style=&quot;font-size: 14pt; letter-spacing: 0.45pt;&quot;&gt;File
  will be created&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/div&gt;
&lt;/td&gt;
 &lt;/tr&gt;
&lt;/tbody&gt;&lt;/table&gt;
&lt;/div&gt;
&lt;br /&gt;
&lt;br /&gt;
Close a File&lt;br /&gt;
A file is to be closed after reading or writing of a file. To close a file, a library function fclose() is used.&lt;br /&gt;
fclose(ptr);&lt;br /&gt;
Here, ptr is a file pointer which is used to associate the program with the file to be closed.&lt;br /&gt;
&lt;br /&gt;
The Functions fprintf() and fscanf()&lt;br /&gt;
The functions of fprintf() and fscanf() is same as that of printf() and scanf(). The difference lies between them is that fprintf() and fscanf() are used to refer to a particular file.&lt;br /&gt;
Writing to a file&lt;br /&gt;
Here is an example of writing a file:&lt;br /&gt;
#include &amp;lt;stdio.h&amp;gt;&lt;br /&gt;
int main()&lt;br /&gt;
{&lt;br /&gt;
int n;&lt;br /&gt;
FILE *fptr;&lt;br /&gt;
fptr=fopen(&quot;C:\\prog.txt&quot;,&quot;w&quot;);&lt;br /&gt;
if(fptr==NULL)&lt;br /&gt;
{&lt;br /&gt;
printf(&quot;Error!&quot;); &amp;nbsp;&lt;br /&gt;
exit(1); &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;br /&gt;
}&lt;br /&gt;
printf(&quot;Enter n: &quot;);&lt;br /&gt;
scanf(&quot;%d&quot;,&amp;amp;n);&lt;br /&gt;
fprintf(fptr,&quot;%d&quot;,n);&lt;br /&gt;
fclose(fptr);&lt;br /&gt;
return 0;&lt;br /&gt;
}&lt;br /&gt;
In this program it takes a number from user and stores it into a file. After the program is compile and run, we will see can a text file prog.txt created in C drive of our computer. When we will open that file, we’ll see the integer we entered.&lt;br /&gt;
Similarly, fscanf() function is used to read data from a file.&lt;br /&gt;
Reading from file&lt;br /&gt;
Example of file reading&lt;br /&gt;
&lt;br /&gt;
#include &amp;lt;stdio.h&amp;gt;&lt;br /&gt;
int main()&lt;br /&gt;
{&lt;br /&gt;
&amp;nbsp; &amp;nbsp;int n;&lt;br /&gt;
&amp;nbsp; &amp;nbsp;FILE *fptr;&lt;br /&gt;
&amp;nbsp; &amp;nbsp;if ((fptr=fopen(&quot;C:\\program.txt&quot;,&quot;r&quot;))==NULL)&lt;br /&gt;
&amp;nbsp; &amp;nbsp;{&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;printf(&quot;Error! opening file&quot;);&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;exit(1); &amp;nbsp; &amp;nbsp; &lt;br /&gt;
&amp;nbsp; &amp;nbsp;}&lt;br /&gt;
&amp;nbsp; &amp;nbsp;fscanf(fptr,&quot;%d&quot;,&amp;amp;n);&lt;br /&gt;
&amp;nbsp; &amp;nbsp;printf(&quot;Value of n=%d&quot;,n);&lt;br /&gt;
&amp;nbsp; &amp;nbsp;fclose(fptr); &amp;nbsp;&lt;br /&gt;
&amp;nbsp; &amp;nbsp;return 0;&lt;br /&gt;
}&lt;br /&gt;
If you have run program above to write in file successfully, you can get the integer back entered in that program using this program.&lt;br /&gt;
Other functions like fgetchar(), fputc() etc. can be used in similar way.&lt;br /&gt;
&lt;div&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;/div&gt;
</content><link rel='replies' type='application/atom+xml' href='http://tutorialterminal.blogspot.com/feeds/6117182712988207631/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://tutorialterminal.blogspot.com/2014/04/inputoutput-files-in-c-lanugage.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/630550980296798375/posts/default/6117182712988207631'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/630550980296798375/posts/default/6117182712988207631'/><link rel='alternate' type='text/html' href='http://tutorialterminal.blogspot.com/2014/04/inputoutput-files-in-c-lanugage.html' title='INPUT/OUTPUT FILES IN C LANUGAGE'/><author><name>InfoTuck</name><uri>http://www.blogger.com/profile/17016689498685423358</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='18' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEisgI3Ncil5ilMjxcK3ufYN7TfeFDOgQkOZ0TpqUUwJVOXMGEDnOYfkooN64nDBC41rYBSBo6l3mT6rtuADi6f8GQ8f0-evyYl2l7GHddwgpO-6Sc0xBBiDHiW5RUqG0M8/s1600/*'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhpeSLmqx777gBlZgjJe_cBieDWEGL8zTrODGtD5E4pSSoMDASCIPQNZRCm8XvRwIz6U7ThCTHDlt-kj2-Gt0eN9vONEVQfSV6pGYKdUTPUiIO4kg6boVr_JyWlpPfIgkuMpAWOc0Rew0I/s72-c/images+%25281%2529.jpg" height="72" width="72"/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-630550980296798375.post-6602150991648890230</id><published>2014-04-18T02:14:00.003-07:00</published><updated>2014-04-18T02:14:46.766-07:00</updated><title type='text'>POINTERS IN C LANGUAGE</title><content type='html'>&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;
&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhZeiPrxMRsiJTDn6xQDEQ-qC7KFdLRUTQQVUwg90b9n8NQGUWK2zap3LgkhXa6Icw_dclcylJkQ0J-sfh8jDDjWUOvHyRFivlX9VTsBPvVkCFdqIxGMtsYKa0HFcH4HZoNAogVZPdqA8k/s1600/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;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhZeiPrxMRsiJTDn6xQDEQ-qC7KFdLRUTQQVUwg90b9n8NQGUWK2zap3LgkhXa6Icw_dclcylJkQ0J-sfh8jDDjWUOvHyRFivlX9VTsBPvVkCFdqIxGMtsYKa0HFcH4HZoNAogVZPdqA8k/s1600/C.jpg&quot; height=&quot;190&quot; width=&quot;320&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: center;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;br /&gt;
Pointers, as the name says points towards a memory location. This not only gives great flexibility and power to programmers in creating a program, but it also one of the great hurdles that the beginner must overcome in using the language.&lt;br /&gt;
All variables in a program will reside in memory; the statements&lt;br /&gt;
&amp;nbsp; &amp;nbsp; float x;&lt;br /&gt;
&amp;nbsp; &amp;nbsp; x = 6.5;&lt;br /&gt;
request that the compiler reserve 4 bytes of memory (on a 32-bit computer) for the floating-point variable x, then put the ``value&#39;&#39; 6.5 in it.&lt;br /&gt;
There are times when we wish to know that where a variable resides in the memory. The address (location in memory) of any variable is obtained by placing the operator ``&amp;amp;&#39;&#39; before its name. Hence address of x is &amp;amp;x. C programming allow us to go a step further and defines a variable better known as a pointer, which contains the address of other variables. This can be seen in following example:&lt;br /&gt;
&amp;nbsp; &amp;nbsp; float x;&lt;br /&gt;
&amp;nbsp; &amp;nbsp; float* px;&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; x = 6.5;&lt;br /&gt;
&amp;nbsp; &amp;nbsp; px = &amp;amp;x;&lt;br /&gt;
defines px to be a pointer objects of type float and it sets equal to the address of x:&lt;br /&gt;
&lt;div&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: left;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEi8o155qHaj8RQH-9UG9_GZ4cCQDaKI8t8exHHPmzl4pzE4lCNwhxXfGv2K1aY2jlQPwx5zxHkBUEEBq5zoQM-SDlyJ1kaWHLQwT5SsRcpAESmzsnwC94eMbdn8TvLqdRgCP28Ffb3XnBE/s1600/ccc.jpg&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEi8o155qHaj8RQH-9UG9_GZ4cCQDaKI8t8exHHPmzl4pzE4lCNwhxXfGv2K1aY2jlQPwx5zxHkBUEEBq5zoQM-SDlyJ1kaWHLQwT5SsRcpAESmzsnwC94eMbdn8TvLqdRgCP28Ffb3XnBE/s1600/ccc.jpg&quot; height=&quot;133&quot; width=&quot;320&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: left;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: left;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both;&quot;&gt;
Pointer use for a variable&lt;/div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both;&quot;&gt;
The content of the memory location referenced by a pointer is obtained using the ``*&#39;&#39; operator (this is called dereferencing the pointer). Thus, *px refers to the value of x.&lt;/div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both;&quot;&gt;
C allows us to perform arithmetic operations using pointers, but beware that the ``unit&#39;&#39; in pointer arithmetic is the size (in bytes) of the object to which the pointer points. Let’s take an example, if px is a pointer to a variable x of typefloat, then the expression px + 1 refers not to the next bit or byte in memory but to the location of the next float after x (4 bytes away on most workstations); if x were of type double, then px + 1 would refer to a location 8 bytes away, and so on. Only if x is of type char will px + 1 actually refer to the next byte in memory.&lt;/div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both;&quot;&gt;
Thus, in&lt;/div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both;&quot;&gt;
&amp;nbsp; &amp;nbsp; char* pc;&lt;/div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both;&quot;&gt;
&amp;nbsp; &amp;nbsp; float* px;&lt;/div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both;&quot;&gt;
&amp;nbsp; &amp;nbsp; float x;&lt;/div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both;&quot;&gt;
&amp;nbsp; &amp;nbsp; x = 6.5;&lt;/div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both;&quot;&gt;
&amp;nbsp; &amp;nbsp; px = &amp;amp;x;&lt;/div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both;&quot;&gt;
&amp;nbsp; &amp;nbsp; pc = (char*) px;&lt;/div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both;&quot;&gt;
(the (char*) in the last line is a ``cast&#39;&#39;, which converts one data type to another), px and pc both point to the same location in memory--the address of x--but px + 1 and pc + 1 point to different memory locations.&lt;/div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both;&quot;&gt;
Consider the following simple code.&lt;/div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both;&quot;&gt;
void main()&lt;/div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both;&quot;&gt;
{&lt;/div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both;&quot;&gt;
&amp;nbsp; &amp;nbsp; float x, y; &amp;nbsp; &amp;nbsp;/* x and y are of float type &amp;nbsp; &amp;nbsp; &amp;nbsp;*/&lt;/div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both;&quot;&gt;
&amp;nbsp; &amp;nbsp; float *fp, *fp2; &amp;nbsp; /* fp and fp2 are pointers to float &amp;nbsp;*/&lt;/div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both;&quot;&gt;
&amp;nbsp; &amp;nbsp; x = 6.5; &amp;nbsp; &amp;nbsp;/* x will now contain value 6.5 &amp;nbsp; &amp;nbsp; &amp;nbsp;*/&lt;/div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both;&quot;&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp;/* print contents and address of x &amp;nbsp; */&lt;/div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both;&quot;&gt;
&amp;nbsp; &amp;nbsp; printf(&quot;Value of x is %f, address of x %ld\n&quot;, x, &amp;amp;x);&lt;/div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both;&quot;&gt;
&amp;nbsp; &amp;nbsp; fp = &amp;amp;x; &amp;nbsp; &amp;nbsp;/* fp now points to location of x &amp;nbsp; &amp;nbsp;*/&lt;/div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both;&quot;&gt;
&amp;nbsp;&amp;nbsp;&lt;/div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both;&quot;&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp;/* the content of fp is printed &amp;nbsp; &amp;nbsp; &amp;nbsp;*/&lt;/div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both;&quot;&gt;
&amp;nbsp; &amp;nbsp; printf(&quot;Value in memory location fp is %f\n&quot;, *fp);&lt;/div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both;&quot;&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp;/* change content of memory location */&lt;/div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both;&quot;&gt;
&amp;nbsp; &amp;nbsp; *fp = 9.2;&lt;/div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both;&quot;&gt;
&amp;nbsp; &amp;nbsp; printf(&quot;New value of x is %f = %f \n&quot;, *fp, x);&lt;/div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both;&quot;&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp;/* perform arithmetic &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; */&lt;/div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both;&quot;&gt;
&amp;nbsp; &amp;nbsp; *fp = *fp + 1.5;&lt;/div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both;&quot;&gt;
&amp;nbsp; &amp;nbsp; printf(&quot;Final value of x is %f = %f \n&quot;, *fp, x);&lt;/div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both;&quot;&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp;/* transfer values &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; */&lt;/div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both;&quot;&gt;
&amp;nbsp; &amp;nbsp; y = *fp;&lt;/div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both;&quot;&gt;
&amp;nbsp; &amp;nbsp; fp2 = fp;&lt;/div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both;&quot;&gt;
&amp;nbsp; &amp;nbsp; printf(&quot;Transfered value into y = %f and fp2 = %f \n&quot;, y, *fp2);&lt;/div&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both;&quot;&gt;
}&lt;/div&gt;
&lt;div&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;/div&gt;
</content><link rel='replies' type='application/atom+xml' href='http://tutorialterminal.blogspot.com/feeds/6602150991648890230/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://tutorialterminal.blogspot.com/2014/04/pointers-in-c-language.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/630550980296798375/posts/default/6602150991648890230'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/630550980296798375/posts/default/6602150991648890230'/><link rel='alternate' type='text/html' href='http://tutorialterminal.blogspot.com/2014/04/pointers-in-c-language.html' title='POINTERS IN C LANGUAGE'/><author><name>InfoTuck</name><uri>http://www.blogger.com/profile/17016689498685423358</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='18' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEisgI3Ncil5ilMjxcK3ufYN7TfeFDOgQkOZ0TpqUUwJVOXMGEDnOYfkooN64nDBC41rYBSBo6l3mT6rtuADi6f8GQ8f0-evyYl2l7GHddwgpO-6Sc0xBBiDHiW5RUqG0M8/s1600/*'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhZeiPrxMRsiJTDn6xQDEQ-qC7KFdLRUTQQVUwg90b9n8NQGUWK2zap3LgkhXa6Icw_dclcylJkQ0J-sfh8jDDjWUOvHyRFivlX9VTsBPvVkCFdqIxGMtsYKa0HFcH4HZoNAogVZPdqA8k/s72-c/C.jpg" height="72" width="72"/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-630550980296798375.post-7223099420491870775</id><published>2014-04-17T04:19:00.000-07:00</published><updated>2014-04-17T04:19:24.479-07:00</updated><title type='text'>OPERATORS IN C PROGRAMMING</title><content type='html'>&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;
&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEimQ4Ts3qEeMSJUMpkEhD95G3IJq9Ue8DK9_sUWlJsetHRBYS4gi1QrS9Cr7IdRV_ooKOT9JsMHG0FbD2llyNBWcLbSrgD7KS2Ut-CltH_pxwLxJhZw29B31h6P_5NvOFmv4Of4mqDmzes/s1600/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;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEimQ4Ts3qEeMSJUMpkEhD95G3IJq9Ue8DK9_sUWlJsetHRBYS4gi1QrS9Cr7IdRV_ooKOT9JsMHG0FbD2llyNBWcLbSrgD7KS2Ut-CltH_pxwLxJhZw29B31h6P_5NvOFmv4Of4mqDmzes/s1600/C.jpg&quot; height=&quot;237&quot; width=&quot;400&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: center;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;br /&gt;
&lt;br /&gt;
First of all let us know what an operator actually means? Well in layman term, an operator is a special symbol used on C programming which instructs compiler to specified mathematical or logical operation. Various operators are pre-defined in C language which proves to be useful for programmers in programming different software.&lt;br /&gt;
There are mainly 5 kinds of operators, namely:&lt;br /&gt;
• Arithmetic Operators&lt;br /&gt;
• Relational Operators&lt;br /&gt;
• Logical Operators&lt;br /&gt;
• Bitwise Operators&lt;br /&gt;
• Assignment Operators&lt;br /&gt;
&lt;br /&gt;
Arithmetic Operator&lt;br /&gt;
This operator is used to most of the mathematical calculations in a c programming.&lt;br /&gt;
See the table given bellow to understand what arithmetic operators are:&lt;br /&gt;
(let A=30 and B=15)&lt;br /&gt;
&lt;div&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div&gt;
&lt;table border=&quot;1&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot; class=&quot;MsoTableGrid&quot; style=&quot;border-collapse: collapse; border: none; mso-border-alt: solid windowtext .5pt; mso-padding-alt: 0in 5.4pt 0in 5.4pt; mso-yfti-tbllook: 1184;&quot;&gt;
 &lt;tbody&gt;
&lt;tr&gt;
  &lt;td style=&quot;border: solid windowtext 1.0pt; mso-border-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt; width: 155.8pt;&quot; valign=&quot;top&quot; width=&quot;208&quot;&gt;&lt;div align=&quot;center&quot; class=&quot;MsoNormal&quot; style=&quot;margin-bottom: 0.0001pt; text-align: center;&quot;&gt;
&lt;span style=&quot;font-size: 14.0pt;&quot;&gt;Operator&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/div&gt;
&lt;/td&gt;
  &lt;td style=&quot;border-left: none; border: solid windowtext 1.0pt; mso-border-alt: solid windowtext .5pt; mso-border-left-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt; width: 155.85pt;&quot; valign=&quot;top&quot; width=&quot;208&quot;&gt;&lt;div align=&quot;center&quot; class=&quot;MsoNormal&quot; style=&quot;margin-bottom: 0.0001pt; text-align: center;&quot;&gt;
&lt;span style=&quot;font-size: 14.0pt;&quot;&gt;Description&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/div&gt;
&lt;/td&gt;
  &lt;td style=&quot;border-left: none; border: solid windowtext 1.0pt; mso-border-alt: solid windowtext .5pt; mso-border-left-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt; width: 155.85pt;&quot; valign=&quot;top&quot; width=&quot;208&quot;&gt;&lt;div align=&quot;center&quot; class=&quot;MsoNormal&quot; style=&quot;margin-bottom: 0.0001pt; text-align: center;&quot;&gt;
&lt;span style=&quot;font-size: 14.0pt;&quot;&gt;Example&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/div&gt;
&lt;/td&gt;
 &lt;/tr&gt;
&lt;tr&gt;
  &lt;td style=&quot;border-top: none; border: solid windowtext 1.0pt; mso-border-alt: solid windowtext .5pt; mso-border-top-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt; width: 155.8pt;&quot; valign=&quot;top&quot; width=&quot;208&quot;&gt;&lt;div class=&quot;MsoNormal&quot; style=&quot;margin-bottom: 0.0001pt;&quot;&gt;
&lt;span style=&quot;font-size: 14.0pt;&quot;&gt;+&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/div&gt;
&lt;/td&gt;
  &lt;td style=&quot;border-bottom: solid windowtext 1.0pt; border-left: none; border-right: solid windowtext 1.0pt; border-top: none; mso-border-alt: solid windowtext .5pt; mso-border-left-alt: solid windowtext .5pt; mso-border-top-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt; width: 155.85pt;&quot; valign=&quot;top&quot; width=&quot;208&quot;&gt;&lt;div class=&quot;MsoNormal&quot; style=&quot;margin-bottom: 0.0001pt;&quot;&gt;
&lt;span style=&quot;font-size: 14.0pt;&quot;&gt;Adds two operands&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/div&gt;
&lt;/td&gt;
  &lt;td style=&quot;border-bottom: solid windowtext 1.0pt; border-left: none; border-right: solid windowtext 1.0pt; border-top: none; mso-border-alt: solid windowtext .5pt; mso-border-left-alt: solid windowtext .5pt; mso-border-top-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt; width: 155.85pt;&quot; valign=&quot;top&quot; width=&quot;208&quot;&gt;&lt;div class=&quot;MsoNormal&quot; style=&quot;margin-bottom: 0.0001pt;&quot;&gt;
&lt;span style=&quot;font-size: 14.0pt;&quot;&gt;A+B will give 45&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/div&gt;
&lt;/td&gt;
 &lt;/tr&gt;
&lt;tr&gt;
  &lt;td style=&quot;border-top: none; border: solid windowtext 1.0pt; mso-border-alt: solid windowtext .5pt; mso-border-top-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt; width: 155.8pt;&quot; valign=&quot;top&quot; width=&quot;208&quot;&gt;&lt;div class=&quot;MsoNormal&quot; style=&quot;margin-bottom: 0.0001pt;&quot;&gt;
&lt;span style=&quot;font-size: 14.0pt;&quot;&gt;-&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/div&gt;
&lt;/td&gt;
  &lt;td style=&quot;border-bottom: solid windowtext 1.0pt; border-left: none; border-right: solid windowtext 1.0pt; border-top: none; mso-border-alt: solid windowtext .5pt; mso-border-left-alt: solid windowtext .5pt; mso-border-top-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt; width: 155.85pt;&quot; valign=&quot;top&quot; width=&quot;208&quot;&gt;&lt;div class=&quot;MsoNormal&quot; style=&quot;margin-bottom: 0.0001pt;&quot;&gt;
&lt;span style=&quot;font-size: 14.0pt;&quot;&gt;Subtracts operand&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/div&gt;
&lt;/td&gt;
  &lt;td style=&quot;border-bottom: solid windowtext 1.0pt; border-left: none; border-right: solid windowtext 1.0pt; border-top: none; mso-border-alt: solid windowtext .5pt; mso-border-left-alt: solid windowtext .5pt; mso-border-top-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt; width: 155.85pt;&quot; valign=&quot;top&quot; width=&quot;208&quot;&gt;&lt;div class=&quot;MsoNormal&quot; style=&quot;margin-bottom: 0.0001pt;&quot;&gt;
&lt;span style=&quot;font-size: 14.0pt;&quot;&gt;A-B will give15&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/div&gt;
&lt;/td&gt;
 &lt;/tr&gt;
&lt;tr&gt;
  &lt;td style=&quot;border-top: none; border: solid windowtext 1.0pt; mso-border-alt: solid windowtext .5pt; mso-border-top-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt; width: 155.8pt;&quot; valign=&quot;top&quot; width=&quot;208&quot;&gt;&lt;div class=&quot;MsoNormal&quot; style=&quot;margin-bottom: 0.0001pt;&quot;&gt;
&lt;span style=&quot;font-size: 14.0pt;&quot;&gt;*&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/div&gt;
&lt;/td&gt;
  &lt;td style=&quot;border-bottom: solid windowtext 1.0pt; border-left: none; border-right: solid windowtext 1.0pt; border-top: none; mso-border-alt: solid windowtext .5pt; mso-border-left-alt: solid windowtext .5pt; mso-border-top-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt; width: 155.85pt;&quot; valign=&quot;top&quot; width=&quot;208&quot;&gt;&lt;div class=&quot;MsoNormal&quot; style=&quot;margin-bottom: 0.0001pt;&quot;&gt;
&lt;span style=&quot;font-size: 14.0pt;&quot;&gt;Multiplies both operands&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/div&gt;
&lt;/td&gt;
  &lt;td style=&quot;border-bottom: solid windowtext 1.0pt; border-left: none; border-right: solid windowtext 1.0pt; border-top: none; mso-border-alt: solid windowtext .5pt; mso-border-left-alt: solid windowtext .5pt; mso-border-top-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt; width: 155.85pt;&quot; valign=&quot;top&quot; width=&quot;208&quot;&gt;&lt;div class=&quot;MsoNormal&quot; style=&quot;margin-bottom: 0.0001pt;&quot;&gt;
&lt;span style=&quot;font-size: 14.0pt;&quot;&gt;A*B will give 450&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/div&gt;
&lt;/td&gt;
 &lt;/tr&gt;
&lt;tr&gt;
  &lt;td style=&quot;border-top: none; border: solid windowtext 1.0pt; mso-border-alt: solid windowtext .5pt; mso-border-top-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt; width: 155.8pt;&quot; valign=&quot;top&quot; width=&quot;208&quot;&gt;&lt;div class=&quot;MsoNormal&quot; style=&quot;margin-bottom: 0.0001pt;&quot;&gt;
&lt;span style=&quot;font-size: 14.0pt;&quot;&gt;/&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/div&gt;
&lt;/td&gt;
  &lt;td style=&quot;border-bottom: solid windowtext 1.0pt; border-left: none; border-right: solid windowtext 1.0pt; border-top: none; mso-border-alt: solid windowtext .5pt; mso-border-left-alt: solid windowtext .5pt; mso-border-top-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt; width: 155.85pt;&quot; valign=&quot;top&quot; width=&quot;208&quot;&gt;&lt;div class=&quot;MsoNormal&quot; style=&quot;margin-bottom: 0.0001pt;&quot;&gt;
&lt;span style=&quot;font-size: 14.0pt;&quot;&gt;Divide operands&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/div&gt;
&lt;/td&gt;
  &lt;td style=&quot;border-bottom: solid windowtext 1.0pt; border-left: none; border-right: solid windowtext 1.0pt; border-top: none; mso-border-alt: solid windowtext .5pt; mso-border-left-alt: solid windowtext .5pt; mso-border-top-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt; width: 155.85pt;&quot; valign=&quot;top&quot; width=&quot;208&quot;&gt;&lt;div class=&quot;MsoNormal&quot; style=&quot;margin-bottom: 0.0001pt;&quot;&gt;
&lt;span style=&quot;font-size: 14.0pt;&quot;&gt;A/B will give 2&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/div&gt;
&lt;/td&gt;
 &lt;/tr&gt;
&lt;tr&gt;
  &lt;td style=&quot;border-top: none; border: solid windowtext 1.0pt; mso-border-alt: solid windowtext .5pt; mso-border-top-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt; width: 155.8pt;&quot; valign=&quot;top&quot; width=&quot;208&quot;&gt;&lt;div class=&quot;MsoNormal&quot; style=&quot;margin-bottom: 0.0001pt;&quot;&gt;
&lt;span style=&quot;font-size: 14.0pt;&quot;&gt;%&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/div&gt;
&lt;/td&gt;
  &lt;td style=&quot;border-bottom: solid windowtext 1.0pt; border-left: none; border-right: solid windowtext 1.0pt; border-top: none; mso-border-alt: solid windowtext .5pt; mso-border-left-alt: solid windowtext .5pt; mso-border-top-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt; width: 155.85pt;&quot; valign=&quot;top&quot; width=&quot;208&quot;&gt;&lt;div class=&quot;MsoNormal&quot; style=&quot;margin-bottom: 0.0001pt;&quot;&gt;
&lt;span style=&quot;font-size: 14.0pt;&quot;&gt;Modulus Operator&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/div&gt;
&lt;/td&gt;
  &lt;td style=&quot;border-bottom: solid windowtext 1.0pt; border-left: none; border-right: solid windowtext 1.0pt; border-top: none; mso-border-alt: solid windowtext .5pt; mso-border-left-alt: solid windowtext .5pt; mso-border-top-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt; width: 155.85pt;&quot; valign=&quot;top&quot; width=&quot;208&quot;&gt;&lt;div class=&quot;MsoNormal&quot; style=&quot;margin-bottom: 0.0001pt;&quot;&gt;
&lt;span style=&quot;font-size: 14.0pt;&quot;&gt;A%B will give 0&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/div&gt;
&lt;/td&gt;
 &lt;/tr&gt;
&lt;tr&gt;
  &lt;td style=&quot;border-top: none; border: solid windowtext 1.0pt; mso-border-alt: solid windowtext .5pt; mso-border-top-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt; width: 155.8pt;&quot; valign=&quot;top&quot; width=&quot;208&quot;&gt;&lt;div class=&quot;MsoNormal&quot; style=&quot;margin-bottom: 0.0001pt;&quot;&gt;
&lt;span style=&quot;font-size: 14.0pt;&quot;&gt;++&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/div&gt;
&lt;/td&gt;
  &lt;td style=&quot;border-bottom: solid windowtext 1.0pt; border-left: none; border-right: solid windowtext 1.0pt; border-top: none; mso-border-alt: solid windowtext .5pt; mso-border-left-alt: solid windowtext .5pt; mso-border-top-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt; width: 155.85pt;&quot; valign=&quot;top&quot; width=&quot;208&quot;&gt;&lt;div class=&quot;MsoNormal&quot; style=&quot;margin-bottom: 0.0001pt;&quot;&gt;
&lt;span style=&quot;font-size: 14.0pt;&quot;&gt;Increment&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/div&gt;
&lt;/td&gt;
  &lt;td style=&quot;border-bottom: solid windowtext 1.0pt; border-left: none; border-right: solid windowtext 1.0pt; border-top: none; mso-border-alt: solid windowtext .5pt; mso-border-left-alt: solid windowtext .5pt; mso-border-top-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt; width: 155.85pt;&quot; valign=&quot;top&quot; width=&quot;208&quot;&gt;&lt;div class=&quot;MsoNormal&quot; style=&quot;margin-bottom: 0.0001pt;&quot;&gt;
&lt;span style=&quot;font-size: 14.0pt;&quot;&gt;A++ will give 31&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/div&gt;
&lt;/td&gt;
 &lt;/tr&gt;
&lt;tr&gt;
  &lt;td style=&quot;border-top: none; border: solid windowtext 1.0pt; mso-border-alt: solid windowtext .5pt; mso-border-top-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt; width: 155.8pt;&quot; valign=&quot;top&quot; width=&quot;208&quot;&gt;&lt;div class=&quot;MsoNormal&quot; style=&quot;margin-bottom: 0.0001pt;&quot;&gt;
&lt;span style=&quot;font-size: 14.0pt;&quot;&gt;--&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/div&gt;
&lt;/td&gt;
  &lt;td style=&quot;border-bottom: solid windowtext 1.0pt; border-left: none; border-right: solid windowtext 1.0pt; border-top: none; mso-border-alt: solid windowtext .5pt; mso-border-left-alt: solid windowtext .5pt; mso-border-top-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt; width: 155.85pt;&quot; valign=&quot;top&quot; width=&quot;208&quot;&gt;&lt;div class=&quot;MsoNormal&quot; style=&quot;margin-bottom: 0.0001pt;&quot;&gt;
&lt;span style=&quot;font-size: 14.0pt;&quot;&gt;Decrement &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/div&gt;
&lt;/td&gt;
  &lt;td style=&quot;border-bottom: solid windowtext 1.0pt; border-left: none; border-right: solid windowtext 1.0pt; border-top: none; mso-border-alt: solid windowtext .5pt; mso-border-left-alt: solid windowtext .5pt; mso-border-top-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt; width: 155.85pt;&quot; valign=&quot;top&quot; width=&quot;208&quot;&gt;&lt;div class=&quot;MsoNormal&quot; style=&quot;margin-bottom: 0.0001pt;&quot;&gt;
&lt;span style=&quot;font-size: 14.0pt;&quot;&gt;B-- will give 14&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/div&gt;
&lt;/td&gt;
 &lt;/tr&gt;
&lt;/tbody&gt;&lt;/table&gt;
&lt;/div&gt;
&lt;br /&gt;
&lt;br /&gt;
Relational Operator&lt;br /&gt;
Relational operators are those symbols which are used to compare two or more operands. Examples of relational operator are equal to, less than, more than, more than or equal to, less than or equal to, not equal to etc.&lt;br /&gt;
We’ve already discussed about Relational Operator in our previous blog.&lt;br /&gt;
&lt;a href=&quot;http://tutorialterminal.blogspot.in/2014/04/features-of-c-language-programming.html&quot;&gt;&lt;span style=&quot;color: red;&quot;&gt;Click Here to See&lt;/span&gt;&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
Logical Operator&lt;br /&gt;
Logic operators work like logic gates that are OR gate, AND gate, NOT gate etc. They only work in case of binary code i.e. 1 or 0.&lt;br /&gt;
Here are logical operators used in C language programming.&lt;br /&gt;
(Let A=1 and B=0)&lt;br /&gt;
&lt;div&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div&gt;
&lt;table border=&quot;1&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot; class=&quot;MsoTableGrid&quot; style=&quot;border-collapse: collapse; border: none; mso-border-alt: solid windowtext .5pt; mso-padding-alt: 0in 5.4pt 0in 5.4pt; mso-yfti-tbllook: 1184;&quot;&gt;
 &lt;tbody&gt;
&lt;tr&gt;
  &lt;td style=&quot;border: solid windowtext 1.0pt; mso-border-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt; width: 155.8pt;&quot; valign=&quot;top&quot; width=&quot;208&quot;&gt;&lt;div align=&quot;center&quot; class=&quot;MsoNormal&quot; style=&quot;margin-bottom: 0.0001pt; text-align: center;&quot;&gt;
&lt;span style=&quot;font-size: 14.0pt;&quot;&gt;Operator&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/div&gt;
&lt;/td&gt;
  &lt;td style=&quot;border-left: none; border: solid windowtext 1.0pt; mso-border-alt: solid windowtext .5pt; mso-border-left-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt; width: 155.85pt;&quot; valign=&quot;top&quot; width=&quot;208&quot;&gt;&lt;div align=&quot;center&quot; class=&quot;MsoNormal&quot; style=&quot;margin-bottom: 0.0001pt; text-align: center;&quot;&gt;
&lt;span style=&quot;font-size: 14.0pt;&quot;&gt;Description&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/div&gt;
&lt;/td&gt;
  &lt;td style=&quot;border-left: none; border: solid windowtext 1.0pt; mso-border-alt: solid windowtext .5pt; mso-border-left-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt; width: 155.85pt;&quot; valign=&quot;top&quot; width=&quot;208&quot;&gt;&lt;div align=&quot;center&quot; class=&quot;MsoNormal&quot; style=&quot;margin-bottom: 0.0001pt; text-align: center;&quot;&gt;
&lt;span style=&quot;font-size: 14.0pt;&quot;&gt;Example&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/div&gt;
&lt;/td&gt;
 &lt;/tr&gt;
&lt;tr&gt;
  &lt;td style=&quot;border-top: none; border: solid windowtext 1.0pt; mso-border-alt: solid windowtext .5pt; mso-border-top-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt; width: 155.8pt;&quot; valign=&quot;top&quot; width=&quot;208&quot;&gt;&lt;div class=&quot;MsoNormal&quot; style=&quot;margin-bottom: 0.0001pt;&quot;&gt;
&lt;span style=&quot;font-size: 14.0pt;&quot;&gt;&amp;amp;&amp;amp;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/div&gt;
&lt;/td&gt;
  &lt;td style=&quot;border-bottom: solid windowtext 1.0pt; border-left: none; border-right: solid windowtext 1.0pt; border-top: none; mso-border-alt: solid windowtext .5pt; mso-border-left-alt: solid windowtext .5pt; mso-border-top-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt; width: 155.85pt;&quot; valign=&quot;top&quot; width=&quot;208&quot;&gt;&lt;div class=&quot;MsoNormal&quot; style=&quot;margin-bottom: 0.0001pt;&quot;&gt;
&lt;span style=&quot;font-size: 14.0pt;&quot;&gt;AND operator&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/div&gt;
&lt;/td&gt;
  &lt;td style=&quot;border-bottom: solid windowtext 1.0pt; border-left: none; border-right: solid windowtext 1.0pt; border-top: none; mso-border-alt: solid windowtext .5pt; mso-border-left-alt: solid windowtext .5pt; mso-border-top-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt; width: 155.85pt;&quot; valign=&quot;top&quot; width=&quot;208&quot;&gt;&lt;div class=&quot;MsoNormal&quot; style=&quot;margin-bottom: 0.0001pt;&quot;&gt;
&lt;span style=&quot;font-size: 14.0pt;&quot;&gt;(A &amp;amp;&amp;amp; B) gives False&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/div&gt;
&lt;/td&gt;
 &lt;/tr&gt;
&lt;tr&gt;
  &lt;td style=&quot;border-top: none; border: solid windowtext 1.0pt; mso-border-alt: solid windowtext .5pt; mso-border-top-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt; width: 155.8pt;&quot; valign=&quot;top&quot; width=&quot;208&quot;&gt;&lt;div class=&quot;MsoNormal&quot; style=&quot;margin-bottom: 0.0001pt;&quot;&gt;
&lt;span style=&quot;font-size: 14.0pt;&quot;&gt;||&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/div&gt;
&lt;/td&gt;
  &lt;td style=&quot;border-bottom: solid windowtext 1.0pt; border-left: none; border-right: solid windowtext 1.0pt; border-top: none; mso-border-alt: solid windowtext .5pt; mso-border-left-alt: solid windowtext .5pt; mso-border-top-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt; width: 155.85pt;&quot; valign=&quot;top&quot; width=&quot;208&quot;&gt;&lt;div class=&quot;MsoNormal&quot; style=&quot;margin-bottom: 0.0001pt;&quot;&gt;
&lt;span style=&quot;font-size: 14.0pt;&quot;&gt;OR Operator&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/div&gt;
&lt;/td&gt;
  &lt;td style=&quot;border-bottom: solid windowtext 1.0pt; border-left: none; border-right: solid windowtext 1.0pt; border-top: none; mso-border-alt: solid windowtext .5pt; mso-border-left-alt: solid windowtext .5pt; mso-border-top-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt; width: 155.85pt;&quot; valign=&quot;top&quot; width=&quot;208&quot;&gt;&lt;div class=&quot;MsoNormal&quot; style=&quot;margin-bottom: 0.0001pt;&quot;&gt;
&lt;span style=&quot;font-size: 14.0pt;&quot;&gt;(A || B) gives True&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/div&gt;
&lt;/td&gt;
 &lt;/tr&gt;
&lt;tr&gt;
  &lt;td style=&quot;border-top: none; border: solid windowtext 1.0pt; mso-border-alt: solid windowtext .5pt; mso-border-top-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt; width: 155.8pt;&quot; valign=&quot;top&quot; width=&quot;208&quot;&gt;&lt;div class=&quot;MsoNormal&quot; style=&quot;margin-bottom: 0.0001pt;&quot;&gt;
&lt;span style=&quot;font-size: 14.0pt;&quot;&gt;!&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/div&gt;
&lt;/td&gt;
  &lt;td style=&quot;border-bottom: solid windowtext 1.0pt; border-left: none; border-right: solid windowtext 1.0pt; border-top: none; mso-border-alt: solid windowtext .5pt; mso-border-left-alt: solid windowtext .5pt; mso-border-top-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt; width: 155.85pt;&quot; valign=&quot;top&quot; width=&quot;208&quot;&gt;&lt;div class=&quot;MsoNormal&quot; style=&quot;margin-bottom: 0.0001pt;&quot;&gt;
&lt;span style=&quot;font-size: 14.0pt;&quot;&gt;NOT Operator&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/div&gt;
&lt;/td&gt;
  &lt;td style=&quot;border-bottom: solid windowtext 1.0pt; border-left: none; border-right: solid windowtext 1.0pt; border-top: none; mso-border-alt: solid windowtext .5pt; mso-border-left-alt: solid windowtext .5pt; mso-border-top-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt; width: 155.85pt;&quot; valign=&quot;top&quot; width=&quot;208&quot;&gt;&lt;div class=&quot;MsoNormal&quot; style=&quot;margin-bottom: 0.0001pt;&quot;&gt;
&lt;span style=&quot;font-size: 14.0pt;&quot;&gt;A! gives False;&lt;br /&gt;
  B! gives True&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/div&gt;
&lt;/td&gt;
 &lt;/tr&gt;
&lt;/tbody&gt;&lt;/table&gt;
&lt;/div&gt;
&lt;br /&gt;
Bitwise Operator&lt;br /&gt;
Bit-wise operator first covert a number into its binary code and then operate upon it to give the result.&lt;br /&gt;
Following are the results of bitwise operation:&lt;br /&gt;
&lt;div&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div&gt;
&lt;table border=&quot;1&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot; class=&quot;MsoTableGrid&quot; style=&quot;border-collapse: collapse; border: none; mso-border-alt: solid windowtext .5pt; mso-padding-alt: 0in 5.4pt 0in 5.4pt; mso-yfti-tbllook: 1184;&quot;&gt;
 &lt;tbody&gt;
&lt;tr&gt;
  &lt;td style=&quot;border: solid windowtext 1.0pt; mso-border-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt; width: 93.5pt;&quot; valign=&quot;top&quot; width=&quot;125&quot;&gt;&lt;div align=&quot;center&quot; class=&quot;MsoNormal&quot; style=&quot;margin-bottom: 0.0001pt; text-align: center;&quot;&gt;
&lt;b&gt;&lt;span style=&quot;font-size: 14.0pt;&quot;&gt;u&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/b&gt;&lt;/div&gt;
&lt;/td&gt;
  &lt;td style=&quot;border-left: none; border: solid windowtext 1.0pt; mso-border-alt: solid windowtext .5pt; mso-border-left-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt; width: 93.5pt;&quot; valign=&quot;top&quot; width=&quot;125&quot;&gt;&lt;div align=&quot;center&quot; class=&quot;MsoNormal&quot; style=&quot;margin-bottom: 0.0001pt; text-align: center;&quot;&gt;
&lt;b&gt;&lt;span style=&quot;font-size: 14.0pt;&quot;&gt;v&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/b&gt;&lt;/div&gt;
&lt;/td&gt;
  &lt;td style=&quot;border-left: none; border: solid windowtext 1.0pt; mso-border-alt: solid windowtext .5pt; mso-border-left-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt; width: 93.5pt;&quot; valign=&quot;top&quot; width=&quot;125&quot;&gt;&lt;div align=&quot;center&quot; class=&quot;MsoNormal&quot; style=&quot;margin-bottom: 0.0001pt; text-align: center;&quot;&gt;
&lt;b&gt;&lt;span style=&quot;font-size: 14.0pt;&quot;&gt;u&amp;amp;v&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/b&gt;&lt;/div&gt;
&lt;/td&gt;
  &lt;td style=&quot;border-left: none; border: solid windowtext 1.0pt; mso-border-alt: solid windowtext .5pt; mso-border-left-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt; width: 93.5pt;&quot; valign=&quot;top&quot; width=&quot;125&quot;&gt;&lt;div align=&quot;center&quot; class=&quot;MsoNormal&quot; style=&quot;margin-bottom: 0.0001pt; text-align: center;&quot;&gt;
&lt;b&gt;&lt;span style=&quot;font-size: 14.0pt;&quot;&gt;u|v&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/b&gt;&lt;/div&gt;
&lt;/td&gt;
  &lt;td style=&quot;border-left: none; border: solid windowtext 1.0pt; mso-border-alt: solid windowtext .5pt; mso-border-left-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt; width: 93.5pt;&quot; valign=&quot;top&quot; width=&quot;125&quot;&gt;&lt;div align=&quot;center&quot; class=&quot;MsoNormal&quot; style=&quot;margin-bottom: 0.0001pt; text-align: center;&quot;&gt;
&lt;b&gt;&lt;span style=&quot;font-size: 14.0pt;&quot;&gt;u^v&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/b&gt;&lt;/div&gt;
&lt;/td&gt;
 &lt;/tr&gt;
&lt;tr&gt;
  &lt;td style=&quot;border-top: none; border: solid windowtext 1.0pt; mso-border-alt: solid windowtext .5pt; mso-border-top-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt; width: 93.5pt;&quot; valign=&quot;top&quot; width=&quot;125&quot;&gt;&lt;div align=&quot;center&quot; class=&quot;MsoNormal&quot; style=&quot;margin-bottom: 0.0001pt; text-align: center;&quot;&gt;
&lt;span style=&quot;font-size: 14.0pt;&quot;&gt;0&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/div&gt;
&lt;/td&gt;
  &lt;td style=&quot;border-bottom: solid windowtext 1.0pt; border-left: none; border-right: solid windowtext 1.0pt; border-top: none; mso-border-alt: solid windowtext .5pt; mso-border-left-alt: solid windowtext .5pt; mso-border-top-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt; width: 93.5pt;&quot; valign=&quot;top&quot; width=&quot;125&quot;&gt;&lt;div align=&quot;center&quot; class=&quot;MsoNormal&quot; style=&quot;margin-bottom: 0.0001pt; text-align: center;&quot;&gt;
&lt;span style=&quot;font-size: 14.0pt;&quot;&gt;0&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/div&gt;
&lt;/td&gt;
  &lt;td style=&quot;border-bottom: solid windowtext 1.0pt; border-left: none; border-right: solid windowtext 1.0pt; border-top: none; mso-border-alt: solid windowtext .5pt; mso-border-left-alt: solid windowtext .5pt; mso-border-top-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt; width: 93.5pt;&quot; valign=&quot;top&quot; width=&quot;125&quot;&gt;&lt;div align=&quot;center&quot; class=&quot;MsoNormal&quot; style=&quot;margin-bottom: 0.0001pt; text-align: center;&quot;&gt;
&lt;span style=&quot;font-size: 14.0pt;&quot;&gt;0&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/div&gt;
&lt;/td&gt;
  &lt;td style=&quot;border-bottom: solid windowtext 1.0pt; border-left: none; border-right: solid windowtext 1.0pt; border-top: none; mso-border-alt: solid windowtext .5pt; mso-border-left-alt: solid windowtext .5pt; mso-border-top-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt; width: 93.5pt;&quot; valign=&quot;top&quot; width=&quot;125&quot;&gt;&lt;div align=&quot;center&quot; class=&quot;MsoNormal&quot; style=&quot;margin-bottom: 0.0001pt; text-align: center;&quot;&gt;
&lt;span style=&quot;font-size: 14.0pt;&quot;&gt;0&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/div&gt;
&lt;/td&gt;
  &lt;td style=&quot;border-bottom: solid windowtext 1.0pt; border-left: none; border-right: solid windowtext 1.0pt; border-top: none; mso-border-alt: solid windowtext .5pt; mso-border-left-alt: solid windowtext .5pt; mso-border-top-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt; width: 93.5pt;&quot; valign=&quot;top&quot; width=&quot;125&quot;&gt;&lt;div align=&quot;center&quot; class=&quot;MsoNormal&quot; style=&quot;margin-bottom: 0.0001pt; text-align: center;&quot;&gt;
&lt;span style=&quot;font-size: 14.0pt;&quot;&gt;0&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/div&gt;
&lt;/td&gt;
 &lt;/tr&gt;
&lt;tr&gt;
  &lt;td style=&quot;border-top: none; border: solid windowtext 1.0pt; mso-border-alt: solid windowtext .5pt; mso-border-top-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt; width: 93.5pt;&quot; valign=&quot;top&quot; width=&quot;125&quot;&gt;&lt;div align=&quot;center&quot; class=&quot;MsoNormal&quot; style=&quot;margin-bottom: 0.0001pt; text-align: center;&quot;&gt;
&lt;span style=&quot;font-size: 14.0pt;&quot;&gt;0&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/div&gt;
&lt;/td&gt;
  &lt;td style=&quot;border-bottom: solid windowtext 1.0pt; border-left: none; border-right: solid windowtext 1.0pt; border-top: none; mso-border-alt: solid windowtext .5pt; mso-border-left-alt: solid windowtext .5pt; mso-border-top-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt; width: 93.5pt;&quot; valign=&quot;top&quot; width=&quot;125&quot;&gt;&lt;div align=&quot;center&quot; class=&quot;MsoNormal&quot; style=&quot;margin-bottom: 0.0001pt; text-align: center;&quot;&gt;
&lt;span style=&quot;font-size: 14.0pt;&quot;&gt;1&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/div&gt;
&lt;/td&gt;
  &lt;td style=&quot;border-bottom: solid windowtext 1.0pt; border-left: none; border-right: solid windowtext 1.0pt; border-top: none; mso-border-alt: solid windowtext .5pt; mso-border-left-alt: solid windowtext .5pt; mso-border-top-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt; width: 93.5pt;&quot; valign=&quot;top&quot; width=&quot;125&quot;&gt;&lt;div align=&quot;center&quot; class=&quot;MsoNormal&quot; style=&quot;margin-bottom: 0.0001pt; text-align: center;&quot;&gt;
&lt;span style=&quot;font-size: 14.0pt;&quot;&gt;0&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/div&gt;
&lt;/td&gt;
  &lt;td style=&quot;border-bottom: solid windowtext 1.0pt; border-left: none; border-right: solid windowtext 1.0pt; border-top: none; mso-border-alt: solid windowtext .5pt; mso-border-left-alt: solid windowtext .5pt; mso-border-top-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt; width: 93.5pt;&quot; valign=&quot;top&quot; width=&quot;125&quot;&gt;&lt;div align=&quot;center&quot; class=&quot;MsoNormal&quot; style=&quot;margin-bottom: 0.0001pt; text-align: center;&quot;&gt;
&lt;span style=&quot;font-size: 14.0pt;&quot;&gt;1&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/div&gt;
&lt;/td&gt;
  &lt;td style=&quot;border-bottom: solid windowtext 1.0pt; border-left: none; border-right: solid windowtext 1.0pt; border-top: none; mso-border-alt: solid windowtext .5pt; mso-border-left-alt: solid windowtext .5pt; mso-border-top-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt; width: 93.5pt;&quot; valign=&quot;top&quot; width=&quot;125&quot;&gt;&lt;div align=&quot;center&quot; class=&quot;MsoNormal&quot; style=&quot;margin-bottom: 0.0001pt; text-align: center;&quot;&gt;
&lt;span style=&quot;font-size: 14.0pt;&quot;&gt;1&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/div&gt;
&lt;/td&gt;
 &lt;/tr&gt;
&lt;tr&gt;
  &lt;td style=&quot;border-top: none; border: solid windowtext 1.0pt; mso-border-alt: solid windowtext .5pt; mso-border-top-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt; width: 93.5pt;&quot; valign=&quot;top&quot; width=&quot;125&quot;&gt;&lt;div align=&quot;center&quot; class=&quot;MsoNormal&quot; style=&quot;margin-bottom: 0.0001pt; text-align: center;&quot;&gt;
&lt;span style=&quot;font-size: 14.0pt;&quot;&gt;1&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/div&gt;
&lt;/td&gt;
  &lt;td style=&quot;border-bottom: solid windowtext 1.0pt; border-left: none; border-right: solid windowtext 1.0pt; border-top: none; mso-border-alt: solid windowtext .5pt; mso-border-left-alt: solid windowtext .5pt; mso-border-top-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt; width: 93.5pt;&quot; valign=&quot;top&quot; width=&quot;125&quot;&gt;&lt;div align=&quot;center&quot; class=&quot;MsoNormal&quot; style=&quot;margin-bottom: 0.0001pt; text-align: center;&quot;&gt;
&lt;span style=&quot;font-size: 14.0pt;&quot;&gt;1&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/div&gt;
&lt;/td&gt;
  &lt;td style=&quot;border-bottom: solid windowtext 1.0pt; border-left: none; border-right: solid windowtext 1.0pt; border-top: none; mso-border-alt: solid windowtext .5pt; mso-border-left-alt: solid windowtext .5pt; mso-border-top-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt; width: 93.5pt;&quot; valign=&quot;top&quot; width=&quot;125&quot;&gt;&lt;div align=&quot;center&quot; class=&quot;MsoNormal&quot; style=&quot;margin-bottom: 0.0001pt; text-align: center;&quot;&gt;
&lt;span style=&quot;font-size: 14.0pt;&quot;&gt;1&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/div&gt;
&lt;/td&gt;
  &lt;td style=&quot;border-bottom: solid windowtext 1.0pt; border-left: none; border-right: solid windowtext 1.0pt; border-top: none; mso-border-alt: solid windowtext .5pt; mso-border-left-alt: solid windowtext .5pt; mso-border-top-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt; width: 93.5pt;&quot; valign=&quot;top&quot; width=&quot;125&quot;&gt;&lt;div align=&quot;center&quot; class=&quot;MsoNormal&quot; style=&quot;margin-bottom: 0.0001pt; text-align: center;&quot;&gt;
&lt;span style=&quot;font-size: 14.0pt;&quot;&gt;1&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/div&gt;
&lt;/td&gt;
  &lt;td style=&quot;border-bottom: solid windowtext 1.0pt; border-left: none; border-right: solid windowtext 1.0pt; border-top: none; mso-border-alt: solid windowtext .5pt; mso-border-left-alt: solid windowtext .5pt; mso-border-top-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt; width: 93.5pt;&quot; valign=&quot;top&quot; width=&quot;125&quot;&gt;&lt;div align=&quot;center&quot; class=&quot;MsoNormal&quot; style=&quot;margin-bottom: 0.0001pt; text-align: center;&quot;&gt;
&lt;span style=&quot;font-size: 14.0pt;&quot;&gt;0&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/div&gt;
&lt;/td&gt;
 &lt;/tr&gt;
&lt;tr&gt;
  &lt;td style=&quot;border-top: none; border: solid windowtext 1.0pt; mso-border-alt: solid windowtext .5pt; mso-border-top-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt; width: 93.5pt;&quot; valign=&quot;top&quot; width=&quot;125&quot;&gt;&lt;div align=&quot;center&quot; class=&quot;MsoNormal&quot; style=&quot;margin-bottom: 0.0001pt; text-align: center;&quot;&gt;
&lt;span style=&quot;font-size: 14.0pt;&quot;&gt;1&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/div&gt;
&lt;/td&gt;
  &lt;td style=&quot;border-bottom: solid windowtext 1.0pt; border-left: none; border-right: solid windowtext 1.0pt; border-top: none; mso-border-alt: solid windowtext .5pt; mso-border-left-alt: solid windowtext .5pt; mso-border-top-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt; width: 93.5pt;&quot; valign=&quot;top&quot; width=&quot;125&quot;&gt;&lt;div align=&quot;center&quot; class=&quot;MsoNormal&quot; style=&quot;margin-bottom: 0.0001pt; text-align: center;&quot;&gt;
&lt;span style=&quot;font-size: 14.0pt;&quot;&gt;0&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/div&gt;
&lt;/td&gt;
  &lt;td style=&quot;border-bottom: solid windowtext 1.0pt; border-left: none; border-right: solid windowtext 1.0pt; border-top: none; mso-border-alt: solid windowtext .5pt; mso-border-left-alt: solid windowtext .5pt; mso-border-top-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt; width: 93.5pt;&quot; valign=&quot;top&quot; width=&quot;125&quot;&gt;&lt;div align=&quot;center&quot; class=&quot;MsoNormal&quot; style=&quot;margin-bottom: 0.0001pt; text-align: center;&quot;&gt;
&lt;span style=&quot;font-size: 14.0pt;&quot;&gt;0&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/div&gt;
&lt;/td&gt;
  &lt;td style=&quot;border-bottom: solid windowtext 1.0pt; border-left: none; border-right: solid windowtext 1.0pt; border-top: none; mso-border-alt: solid windowtext .5pt; mso-border-left-alt: solid windowtext .5pt; mso-border-top-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt; width: 93.5pt;&quot; valign=&quot;top&quot; width=&quot;125&quot;&gt;&lt;div align=&quot;center&quot; class=&quot;MsoNormal&quot; style=&quot;margin-bottom: 0.0001pt; text-align: center;&quot;&gt;
&lt;span style=&quot;font-size: 14.0pt;&quot;&gt;1&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/div&gt;
&lt;/td&gt;
  &lt;td style=&quot;border-bottom: solid windowtext 1.0pt; border-left: none; border-right: solid windowtext 1.0pt; border-top: none; mso-border-alt: solid windowtext .5pt; mso-border-left-alt: solid windowtext .5pt; mso-border-top-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt; width: 93.5pt;&quot; valign=&quot;top&quot; width=&quot;125&quot;&gt;&lt;div align=&quot;center&quot; class=&quot;MsoNormal&quot; style=&quot;margin-bottom: 0.0001pt; text-align: center;&quot;&gt;
&lt;span style=&quot;font-size: 14.0pt;&quot;&gt;1&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/div&gt;
&lt;/td&gt;
 &lt;/tr&gt;
&lt;/tbody&gt;&lt;/table&gt;
&lt;/div&gt;
&lt;br /&gt;
These are bitwise operator:&lt;br /&gt;
(Let A=60 and B=13)&lt;br /&gt;
A= 00111100&lt;br /&gt;
B= 00001101&lt;br /&gt;
&lt;div&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div&gt;
&lt;table border=&quot;1&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot; class=&quot;MsoTableGrid&quot; style=&quot;border-collapse: collapse; border: none; mso-border-alt: solid windowtext .5pt; mso-padding-alt: 0in 5.4pt 0in 5.4pt; mso-yfti-tbllook: 1184; width: 660px;&quot;&gt;
 &lt;tbody&gt;
&lt;tr&gt;
  &lt;td style=&quot;border: solid windowtext 1.0pt; mso-border-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt; width: 71.75pt;&quot; valign=&quot;top&quot; width=&quot;96&quot;&gt;&lt;div align=&quot;center&quot; class=&quot;MsoNormal&quot; style=&quot;margin-bottom: 0.0001pt; text-align: center;&quot;&gt;
&lt;span style=&quot;font-size: 14.0pt;&quot;&gt;Operator&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/div&gt;
&lt;/td&gt;
  &lt;td style=&quot;border-left: none; border: solid windowtext 1.0pt; mso-border-alt: solid windowtext .5pt; mso-border-left-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt; width: 171.0pt;&quot; valign=&quot;top&quot; width=&quot;228&quot;&gt;&lt;div align=&quot;center&quot; class=&quot;MsoNormal&quot; style=&quot;margin-bottom: 0.0001pt; text-align: center;&quot;&gt;
&lt;span style=&quot;font-size: 14.0pt;&quot;&gt;Description&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/div&gt;
&lt;/td&gt;
  &lt;td style=&quot;border-left: none; border: solid windowtext 1.0pt; mso-border-alt: solid windowtext .5pt; mso-border-left-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt; width: 3.5in;&quot; valign=&quot;top&quot; width=&quot;336&quot;&gt;&lt;div align=&quot;center&quot; class=&quot;MsoNormal&quot; style=&quot;margin-bottom: 0.0001pt; text-align: center;&quot;&gt;
&lt;span style=&quot;font-size: 14.0pt;&quot;&gt;Example&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/div&gt;
&lt;/td&gt;
 &lt;/tr&gt;
&lt;tr&gt;
  &lt;td style=&quot;border-top: none; border: solid windowtext 1.0pt; mso-border-alt: solid windowtext .5pt; mso-border-top-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt; width: 71.75pt;&quot; valign=&quot;top&quot; width=&quot;96&quot;&gt;&lt;div class=&quot;MsoNormal&quot; style=&quot;margin-bottom: 0.0001pt;&quot;&gt;
&lt;span style=&quot;font-size: 14.0pt;&quot;&gt;&amp;amp;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/div&gt;
&lt;/td&gt;
  &lt;td style=&quot;border-bottom: solid windowtext 1.0pt; border-left: none; border-right: solid windowtext 1.0pt; border-top: none; mso-border-alt: solid windowtext .5pt; mso-border-left-alt: solid windowtext .5pt; mso-border-top-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt; width: 171.0pt;&quot; valign=&quot;top&quot; width=&quot;228&quot;&gt;&lt;div class=&quot;MsoNormal&quot; style=&quot;margin-bottom: 0.0001pt;&quot;&gt;
&lt;span style=&quot;font-size: 14.0pt;&quot;&gt;Binary AND gate&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/div&gt;
&lt;/td&gt;
  &lt;td style=&quot;border-bottom: solid windowtext 1.0pt; border-left: none; border-right: solid windowtext 1.0pt; border-top: none; mso-border-alt: solid windowtext .5pt; mso-border-left-alt: solid windowtext .5pt; mso-border-top-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt; width: 3.5in;&quot; valign=&quot;top&quot; width=&quot;336&quot;&gt;&lt;div class=&quot;MsoNormal&quot; style=&quot;margin-bottom: 0.0001pt;&quot;&gt;
&lt;span style=&quot;font-size: 14.0pt;&quot;&gt;(A &amp;amp; B) will give 12, which is
  00001100&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/div&gt;
&lt;/td&gt;
 &lt;/tr&gt;
&lt;tr&gt;
  &lt;td style=&quot;border-top: none; border: solid windowtext 1.0pt; mso-border-alt: solid windowtext .5pt; mso-border-top-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt; width: 71.75pt;&quot; valign=&quot;top&quot; width=&quot;96&quot;&gt;&lt;div class=&quot;MsoNormal&quot; style=&quot;margin-bottom: 0.0001pt;&quot;&gt;
&lt;span style=&quot;font-size: 14.0pt;&quot;&gt;|&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/div&gt;
&lt;/td&gt;
  &lt;td style=&quot;border-bottom: solid windowtext 1.0pt; border-left: none; border-right: solid windowtext 1.0pt; border-top: none; mso-border-alt: solid windowtext .5pt; mso-border-left-alt: solid windowtext .5pt; mso-border-top-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt; width: 171.0pt;&quot; valign=&quot;top&quot; width=&quot;228&quot;&gt;&lt;div class=&quot;MsoNormal&quot; style=&quot;margin-bottom: 0.0001pt;&quot;&gt;
&lt;span style=&quot;font-size: 14.0pt;&quot;&gt;Binary OR gate&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/div&gt;
&lt;/td&gt;
  &lt;td style=&quot;border-bottom: solid windowtext 1.0pt; border-left: none; border-right: solid windowtext 1.0pt; border-top: none; mso-border-alt: solid windowtext .5pt; mso-border-left-alt: solid windowtext .5pt; mso-border-top-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt; width: 3.5in;&quot; valign=&quot;top&quot; width=&quot;336&quot;&gt;&lt;div class=&quot;MsoNormal&quot; style=&quot;margin-bottom: 0.0001pt;&quot;&gt;
&lt;span style=&quot;font-size: 14.0pt;&quot;&gt;(A | B) will give 61, which is 00111101&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/div&gt;
&lt;/td&gt;
 &lt;/tr&gt;
&lt;tr&gt;
  &lt;td style=&quot;border-top: none; border: solid windowtext 1.0pt; mso-border-alt: solid windowtext .5pt; mso-border-top-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt; width: 71.75pt;&quot; valign=&quot;top&quot; width=&quot;96&quot;&gt;&lt;div class=&quot;MsoNormal&quot; style=&quot;margin-bottom: 0.0001pt;&quot;&gt;
&lt;span style=&quot;font-size: 14.0pt;&quot;&gt;^&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/div&gt;
&lt;/td&gt;
  &lt;td style=&quot;border-bottom: solid windowtext 1.0pt; border-left: none; border-right: solid windowtext 1.0pt; border-top: none; mso-border-alt: solid windowtext .5pt; mso-border-left-alt: solid windowtext .5pt; mso-border-top-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt; width: 171.0pt;&quot; valign=&quot;top&quot; width=&quot;228&quot;&gt;&lt;div class=&quot;MsoNormal&quot; style=&quot;margin-bottom: 0.0001pt;&quot;&gt;
&lt;span style=&quot;font-size: 14.0pt;&quot;&gt;Binary XOR gate&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/div&gt;
&lt;/td&gt;
  &lt;td style=&quot;border-bottom: solid windowtext 1.0pt; border-left: none; border-right: solid windowtext 1.0pt; border-top: none; mso-border-alt: solid windowtext .5pt; mso-border-left-alt: solid windowtext .5pt; mso-border-top-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt; width: 3.5in;&quot; valign=&quot;top&quot; width=&quot;336&quot;&gt;&lt;div class=&quot;MsoNormal&quot; style=&quot;margin-bottom: 0.0001pt;&quot;&gt;
&lt;span style=&quot;font-size: 14.0pt;&quot;&gt;(A ^ B) will give 49, which is 00110001&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/div&gt;
&lt;/td&gt;
 &lt;/tr&gt;
&lt;tr&gt;
  &lt;td style=&quot;border-top: none; border: solid windowtext 1.0pt; mso-border-alt: solid windowtext .5pt; mso-border-top-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt; width: 71.75pt;&quot; valign=&quot;top&quot; width=&quot;96&quot;&gt;&lt;div class=&quot;MsoNormal&quot; style=&quot;margin-bottom: 0.0001pt;&quot;&gt;
&lt;span style=&quot;font-size: 14.0pt;&quot;&gt;~&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/div&gt;
&lt;/td&gt;
  &lt;td style=&quot;border-bottom: solid windowtext 1.0pt; border-left: none; border-right: solid windowtext 1.0pt; border-top: none; mso-border-alt: solid windowtext .5pt; mso-border-left-alt: solid windowtext .5pt; mso-border-top-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt; width: 171.0pt;&quot; valign=&quot;top&quot; width=&quot;228&quot;&gt;&lt;div class=&quot;MsoNormal&quot; style=&quot;margin-bottom: 0.0001pt;&quot;&gt;
&lt;span style=&quot;font-size: 14.0pt;&quot;&gt;Binary Compliment&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/div&gt;
&lt;/td&gt;
  &lt;td style=&quot;border-bottom: solid windowtext 1.0pt; border-left: none; border-right: solid windowtext 1.0pt; border-top: none; mso-border-alt: solid windowtext .5pt; mso-border-left-alt: solid windowtext .5pt; mso-border-top-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt; width: 3.5in;&quot; valign=&quot;top&quot; width=&quot;336&quot;&gt;&lt;div class=&quot;MsoNormal&quot; style=&quot;margin-bottom: 0.0001pt;&quot;&gt;
&lt;span style=&quot;font-size: 14.0pt;&quot;&gt;(~A ) will give -60, which is 11000011&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/div&gt;
&lt;/td&gt;
 &lt;/tr&gt;
&lt;tr&gt;
  &lt;td style=&quot;border-top: none; border: solid windowtext 1.0pt; mso-border-alt: solid windowtext .5pt; mso-border-top-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt; width: 71.75pt;&quot; valign=&quot;top&quot; width=&quot;96&quot;&gt;&lt;div class=&quot;MsoNormal&quot; style=&quot;margin-bottom: 0.0001pt;&quot;&gt;
&lt;span style=&quot;font-size: 14.0pt;&quot;&gt;&amp;lt;&amp;lt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/span&gt;&lt;/div&gt;
&lt;/td&gt;
  &lt;td style=&quot;border-bottom: solid windowtext 1.0pt; border-left: none; border-right: solid windowtext 1.0pt; border-top: none; mso-border-alt: solid windowtext .5pt; mso-border-left-alt: solid windowtext .5pt; mso-border-top-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt; width: 171.0pt;&quot; valign=&quot;top&quot; width=&quot;228&quot;&gt;&lt;div class=&quot;MsoNormal&quot; style=&quot;margin-bottom: 0.0001pt;&quot;&gt;
&lt;span style=&quot;font-size: 14.0pt;&quot;&gt;Binary Left Shift Operator&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/div&gt;
&lt;/td&gt;
  &lt;td style=&quot;border-bottom: solid windowtext 1.0pt; border-left: none; border-right: solid windowtext 1.0pt; border-top: none; mso-border-alt: solid windowtext .5pt; mso-border-left-alt: solid windowtext .5pt; mso-border-top-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt; width: 3.5in;&quot; valign=&quot;top&quot; width=&quot;336&quot;&gt;&lt;div class=&quot;MsoNormal&quot; style=&quot;margin-bottom: 0.0001pt;&quot;&gt;
&lt;span style=&quot;font-size: 14.0pt;&quot;&gt;A &amp;lt;&amp;lt; 2 will give 240, which is
  11110000&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/div&gt;
&lt;/td&gt;
 &lt;/tr&gt;
&lt;tr&gt;
  &lt;td style=&quot;border-top: none; border: solid windowtext 1.0pt; mso-border-alt: solid windowtext .5pt; mso-border-top-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt; width: 71.75pt;&quot; valign=&quot;top&quot; width=&quot;96&quot;&gt;&lt;div class=&quot;MsoNormal&quot; style=&quot;margin-bottom: 0.0001pt;&quot;&gt;
&lt;span style=&quot;font-size: 14.0pt;&quot;&gt;&amp;gt;&amp;gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/span&gt;&lt;/div&gt;
&lt;/td&gt;
  &lt;td style=&quot;border-bottom: solid windowtext 1.0pt; border-left: none; border-right: solid windowtext 1.0pt; border-top: none; mso-border-alt: solid windowtext .5pt; mso-border-left-alt: solid windowtext .5pt; mso-border-top-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt; width: 171.0pt;&quot; valign=&quot;top&quot; width=&quot;228&quot;&gt;&lt;div class=&quot;MsoNormal&quot; style=&quot;margin-bottom: 0.0001pt;&quot;&gt;
&lt;span style=&quot;font-size: 14.0pt;&quot;&gt;Binary Right Shift Operator&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/div&gt;
&lt;/td&gt;
  &lt;td style=&quot;border-bottom: solid windowtext 1.0pt; border-left: none; border-right: solid windowtext 1.0pt; border-top: none; mso-border-alt: solid windowtext .5pt; mso-border-left-alt: solid windowtext .5pt; mso-border-top-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt; width: 3.5in;&quot; valign=&quot;top&quot; width=&quot;336&quot;&gt;&lt;div class=&quot;MsoNormal&quot; style=&quot;margin-bottom: 0.0001pt;&quot;&gt;
&lt;span style=&quot;font-size: 14.0pt;&quot;&gt;A &amp;gt;&amp;gt; 2 will give 15, which is
  00001111&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/div&gt;
&lt;/td&gt;
 &lt;/tr&gt;
&lt;/tbody&gt;&lt;/table&gt;
&lt;/div&gt;
&lt;br /&gt;
Assignment Operator&lt;br /&gt;
&lt;br /&gt;
These operator perform following tasks in C language programming:&lt;br /&gt;
&lt;br /&gt;
&lt;table border=&quot;1&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot; class=&quot;MsoTableGrid&quot; style=&quot;border-collapse: collapse; border: none; mso-border-alt: solid windowtext .5pt; mso-padding-alt: 0in 5.4pt 0in 5.4pt; mso-yfti-tbllook: 1184;&quot;&gt;
 &lt;tbody&gt;
&lt;tr&gt;
  &lt;td style=&quot;border: solid windowtext 1.0pt; mso-border-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt; width: 155.8pt;&quot; valign=&quot;top&quot; width=&quot;208&quot;&gt;
  &lt;div align=&quot;center&quot; class=&quot;MsoNormal&quot; style=&quot;margin-bottom: 0.0001pt; text-align: center;&quot;&gt;
&lt;span style=&quot;font-size: 14.0pt;&quot;&gt;Operator&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/div&gt;
&lt;/td&gt;
  &lt;td style=&quot;border-left: none; border: solid windowtext 1.0pt; mso-border-alt: solid windowtext .5pt; mso-border-left-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt; width: 155.85pt;&quot; valign=&quot;top&quot; width=&quot;208&quot;&gt;
  &lt;div align=&quot;center&quot; class=&quot;MsoNormal&quot; style=&quot;margin-bottom: 0.0001pt; text-align: center;&quot;&gt;
&lt;span style=&quot;font-size: 14.0pt;&quot;&gt;Description&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/div&gt;
&lt;/td&gt;
  &lt;td style=&quot;border-left: none; border: solid windowtext 1.0pt; mso-border-alt: solid windowtext .5pt; mso-border-left-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt; width: 155.85pt;&quot; valign=&quot;top&quot; width=&quot;208&quot;&gt;
  &lt;div align=&quot;center&quot; class=&quot;MsoNormal&quot; style=&quot;margin-bottom: 0.0001pt; text-align: center;&quot;&gt;
&lt;span style=&quot;font-size: 14.0pt;&quot;&gt;Example&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/div&gt;
&lt;/td&gt;
 &lt;/tr&gt;
&lt;tr&gt;
  &lt;td style=&quot;border-top: none; border: solid windowtext 1.0pt; mso-border-alt: solid windowtext .5pt; mso-border-top-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt; width: 155.8pt;&quot; valign=&quot;top&quot; width=&quot;208&quot;&gt;
  &lt;div class=&quot;MsoNormal&quot; style=&quot;margin-bottom: 0.0001pt;&quot;&gt;
&lt;span style=&quot;font-size: 14.0pt;&quot;&gt;=&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/div&gt;
&lt;/td&gt;
  &lt;td style=&quot;border-bottom: solid windowtext 1.0pt; border-left: none; border-right: solid windowtext 1.0pt; border-top: none; mso-border-alt: solid windowtext .5pt; mso-border-left-alt: solid windowtext .5pt; mso-border-top-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt; width: 155.85pt;&quot; valign=&quot;top&quot; width=&quot;208&quot;&gt;
  &lt;div class=&quot;MsoNormal&quot; style=&quot;margin-bottom: 0.0001pt;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;/td&gt;
  &lt;td style=&quot;border-bottom: solid windowtext 1.0pt; border-left: none; border-right: solid windowtext 1.0pt; border-top: none; mso-border-alt: solid windowtext .5pt; mso-border-left-alt: solid windowtext .5pt; mso-border-top-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt; width: 155.85pt;&quot; valign=&quot;top&quot; width=&quot;208&quot;&gt;
  &lt;div class=&quot;MsoNormal&quot; style=&quot;margin-bottom: 0.0001pt;&quot;&gt;
&lt;span style=&quot;font-size: 14.0pt;&quot;&gt;A+B=C, C will be&amp;nbsp; A+B&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/div&gt;
&lt;/td&gt;
 &lt;/tr&gt;
&lt;tr&gt;
  &lt;td style=&quot;border-top: none; border: solid windowtext 1.0pt; mso-border-alt: solid windowtext .5pt; mso-border-top-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt; width: 155.8pt;&quot; valign=&quot;top&quot; width=&quot;208&quot;&gt;
  &lt;div class=&quot;MsoNormal&quot; style=&quot;margin-bottom: 0.0001pt;&quot;&gt;
&lt;span style=&quot;font-size: 14.0pt;&quot;&gt;+=&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/div&gt;
&lt;/td&gt;
  &lt;td style=&quot;border-bottom: solid windowtext 1.0pt; border-left: none; border-right: solid windowtext 1.0pt; border-top: none; mso-border-alt: solid windowtext .5pt; mso-border-left-alt: solid windowtext .5pt; mso-border-top-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt; width: 155.85pt;&quot; valign=&quot;top&quot; width=&quot;208&quot;&gt;
  &lt;div class=&quot;MsoNormal&quot; style=&quot;margin-bottom: 0.0001pt;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;/td&gt;
  &lt;td style=&quot;border-bottom: solid windowtext 1.0pt; border-left: none; border-right: solid windowtext 1.0pt; border-top: none; mso-border-alt: solid windowtext .5pt; mso-border-left-alt: solid windowtext .5pt; mso-border-top-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt; width: 155.85pt;&quot; valign=&quot;top&quot; width=&quot;208&quot;&gt;
  &lt;div class=&quot;MsoNormal&quot; style=&quot;margin-bottom: 0.0001pt;&quot;&gt;
&lt;span style=&quot;font-size: 14.0pt;&quot;&gt;C+=A, C will be&amp;nbsp; C+A&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/div&gt;
&lt;/td&gt;
 &lt;/tr&gt;
&lt;tr&gt;
  &lt;td style=&quot;border-top: none; border: solid windowtext 1.0pt; mso-border-alt: solid windowtext .5pt; mso-border-top-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt; width: 155.8pt;&quot; valign=&quot;top&quot; width=&quot;208&quot;&gt;
  &lt;div class=&quot;MsoNormal&quot; style=&quot;margin-bottom: 0.0001pt;&quot;&gt;
&lt;span style=&quot;font-size: 14.0pt;&quot;&gt;-=&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/div&gt;
&lt;/td&gt;
  &lt;td style=&quot;border-bottom: solid windowtext 1.0pt; border-left: none; border-right: solid windowtext 1.0pt; border-top: none; mso-border-alt: solid windowtext .5pt; mso-border-left-alt: solid windowtext .5pt; mso-border-top-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt; width: 155.85pt;&quot; valign=&quot;top&quot; width=&quot;208&quot;&gt;
  &lt;div class=&quot;MsoNormal&quot; style=&quot;margin-bottom: 0.0001pt;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;/td&gt;
  &lt;td style=&quot;border-bottom: solid windowtext 1.0pt; border-left: none; border-right: solid windowtext 1.0pt; border-top: none; mso-border-alt: solid windowtext .5pt; mso-border-left-alt: solid windowtext .5pt; mso-border-top-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt; width: 155.85pt;&quot; valign=&quot;top&quot; width=&quot;208&quot;&gt;
  &lt;div class=&quot;MsoNormal&quot; style=&quot;margin-bottom: 0.0001pt;&quot;&gt;
&lt;span style=&quot;font-size: 14.0pt;&quot;&gt;C-=A, C will be&amp;nbsp; C-A&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/div&gt;
&lt;/td&gt;
 &lt;/tr&gt;
&lt;tr&gt;
  &lt;td style=&quot;border-top: none; border: solid windowtext 1.0pt; mso-border-alt: solid windowtext .5pt; mso-border-top-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt; width: 155.8pt;&quot; valign=&quot;top&quot; width=&quot;208&quot;&gt;
  &lt;div class=&quot;MsoNormal&quot; style=&quot;margin-bottom: 0.0001pt;&quot;&gt;
&lt;span style=&quot;font-size: 14.0pt;&quot;&gt;*=&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/div&gt;
&lt;/td&gt;
  &lt;td style=&quot;border-bottom: solid windowtext 1.0pt; border-left: none; border-right: solid windowtext 1.0pt; border-top: none; mso-border-alt: solid windowtext .5pt; mso-border-left-alt: solid windowtext .5pt; mso-border-top-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt; width: 155.85pt;&quot; valign=&quot;top&quot; width=&quot;208&quot;&gt;
  &lt;div class=&quot;MsoNormal&quot; style=&quot;margin-bottom: 0.0001pt;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;/td&gt;
  &lt;td style=&quot;border-bottom: solid windowtext 1.0pt; border-left: none; border-right: solid windowtext 1.0pt; border-top: none; mso-border-alt: solid windowtext .5pt; mso-border-left-alt: solid windowtext .5pt; mso-border-top-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt; width: 155.85pt;&quot; valign=&quot;top&quot; width=&quot;208&quot;&gt;
  &lt;div class=&quot;MsoNormal&quot; style=&quot;margin-bottom: 0.0001pt;&quot;&gt;
&lt;span style=&quot;font-size: 14.0pt;&quot;&gt;C*=A, C will be&amp;nbsp; C*A&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/div&gt;
&lt;/td&gt;
 &lt;/tr&gt;
&lt;tr&gt;
  &lt;td style=&quot;border-top: none; border: solid windowtext 1.0pt; mso-border-alt: solid windowtext .5pt; mso-border-top-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt; width: 155.8pt;&quot; valign=&quot;top&quot; width=&quot;208&quot;&gt;
  &lt;div class=&quot;MsoNormal&quot; style=&quot;margin-bottom: 0.0001pt;&quot;&gt;
&lt;span style=&quot;font-size: 14.0pt;&quot;&gt;/=&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/div&gt;
&lt;/td&gt;
  &lt;td style=&quot;border-bottom: solid windowtext 1.0pt; border-left: none; border-right: solid windowtext 1.0pt; border-top: none; mso-border-alt: solid windowtext .5pt; mso-border-left-alt: solid windowtext .5pt; mso-border-top-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt; width: 155.85pt;&quot; valign=&quot;top&quot; width=&quot;208&quot;&gt;
  &lt;div class=&quot;MsoNormal&quot; style=&quot;margin-bottom: 0.0001pt;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;/td&gt;
  &lt;td style=&quot;border-bottom: solid windowtext 1.0pt; border-left: none; border-right: solid windowtext 1.0pt; border-top: none; mso-border-alt: solid windowtext .5pt; mso-border-left-alt: solid windowtext .5pt; mso-border-top-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt; width: 155.85pt;&quot; valign=&quot;top&quot; width=&quot;208&quot;&gt;
  &lt;div class=&quot;MsoNormal&quot; style=&quot;margin-bottom: 0.0001pt;&quot;&gt;
&lt;span style=&quot;font-size: 14.0pt;&quot;&gt;C/=A, C will be&amp;nbsp; C/A&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/div&gt;
&lt;/td&gt;
 &lt;/tr&gt;
&lt;tr&gt;
  &lt;td style=&quot;border-top: none; border: solid windowtext 1.0pt; mso-border-alt: solid windowtext .5pt; mso-border-top-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt; width: 155.8pt;&quot; valign=&quot;top&quot; width=&quot;208&quot;&gt;
  &lt;div class=&quot;MsoNormal&quot; style=&quot;margin-bottom: 0.0001pt;&quot;&gt;
&lt;span style=&quot;font-size: 14.0pt;&quot;&gt;%=&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/div&gt;
&lt;/td&gt;
  &lt;td style=&quot;border-bottom: solid windowtext 1.0pt; border-left: none; border-right: solid windowtext 1.0pt; border-top: none; mso-border-alt: solid windowtext .5pt; mso-border-left-alt: solid windowtext .5pt; mso-border-top-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt; width: 155.85pt;&quot; valign=&quot;top&quot; width=&quot;208&quot;&gt;
  &lt;div class=&quot;MsoNormal&quot; style=&quot;margin-bottom: 0.0001pt;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;/td&gt;
  &lt;td style=&quot;border-bottom: solid windowtext 1.0pt; border-left: none; border-right: solid windowtext 1.0pt; border-top: none; mso-border-alt: solid windowtext .5pt; mso-border-left-alt: solid windowtext .5pt; mso-border-top-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt; width: 155.85pt;&quot; valign=&quot;top&quot; width=&quot;208&quot;&gt;
  &lt;div class=&quot;MsoNormal&quot; style=&quot;margin-bottom: 0.0001pt;&quot;&gt;
&lt;span style=&quot;font-size: 14.0pt;&quot;&gt;C%=A, C will be&amp;nbsp; C%A&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/div&gt;
&lt;/td&gt;
 &lt;/tr&gt;
&lt;tr&gt;
  &lt;td style=&quot;border-top: none; border: solid windowtext 1.0pt; mso-border-alt: solid windowtext .5pt; mso-border-top-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt; width: 155.8pt;&quot; valign=&quot;top&quot; width=&quot;208&quot;&gt;
  &lt;div class=&quot;MsoNormal&quot; style=&quot;margin-bottom: 0.0001pt;&quot;&gt;
&lt;span style=&quot;font-size: 14.0pt;&quot;&gt;&amp;lt;&amp;lt;=&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/div&gt;
&lt;/td&gt;
  &lt;td style=&quot;border-bottom: solid windowtext 1.0pt; border-left: none; border-right: solid windowtext 1.0pt; border-top: none; mso-border-alt: solid windowtext .5pt; mso-border-left-alt: solid windowtext .5pt; mso-border-top-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt; width: 155.85pt;&quot; valign=&quot;top&quot; width=&quot;208&quot;&gt;
  &lt;div class=&quot;MsoNormal&quot; style=&quot;margin-bottom: 0.0001pt;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;/td&gt;
  &lt;td style=&quot;border-bottom: solid windowtext 1.0pt; border-left: none; border-right: solid windowtext 1.0pt; border-top: none; mso-border-alt: solid windowtext .5pt; mso-border-left-alt: solid windowtext .5pt; mso-border-top-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt; width: 155.85pt;&quot; valign=&quot;top&quot; width=&quot;208&quot;&gt;
  &lt;div class=&quot;MsoNormal&quot; style=&quot;margin-bottom: 0.0001pt;&quot;&gt;
&lt;span style=&quot;font-size: 14.0pt;&quot;&gt;C&amp;lt;&amp;lt;=2, C will be C&amp;lt;&amp;lt;2 &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/div&gt;
&lt;/td&gt;
 &lt;/tr&gt;
&lt;tr&gt;
  &lt;td style=&quot;border-top: none; border: solid windowtext 1.0pt; mso-border-alt: solid windowtext .5pt; mso-border-top-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt; width: 155.8pt;&quot; valign=&quot;top&quot; width=&quot;208&quot;&gt;
  &lt;div class=&quot;MsoNormal&quot; style=&quot;margin-bottom: 0.0001pt;&quot;&gt;
&lt;span style=&quot;font-size: 14.0pt;&quot;&gt;&amp;gt;&amp;gt;=&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/div&gt;
&lt;/td&gt;
  &lt;td style=&quot;border-bottom: solid windowtext 1.0pt; border-left: none; border-right: solid windowtext 1.0pt; border-top: none; mso-border-alt: solid windowtext .5pt; mso-border-left-alt: solid windowtext .5pt; mso-border-top-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt; width: 155.85pt;&quot; valign=&quot;top&quot; width=&quot;208&quot;&gt;
  &lt;div class=&quot;MsoNormal&quot; style=&quot;margin-bottom: 0.0001pt;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;/td&gt;
  &lt;td style=&quot;border-bottom: solid windowtext 1.0pt; border-left: none; border-right: solid windowtext 1.0pt; border-top: none; mso-border-alt: solid windowtext .5pt; mso-border-left-alt: solid windowtext .5pt; mso-border-top-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt; width: 155.85pt;&quot; valign=&quot;top&quot; width=&quot;208&quot;&gt;
  &lt;div class=&quot;MsoNormal&quot; style=&quot;margin-bottom: 0.0001pt;&quot;&gt;
&lt;span style=&quot;font-size: 14.0pt;&quot;&gt;C&amp;gt;&amp;gt;=2, C will be&amp;nbsp; C&amp;gt;&amp;gt;2&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/div&gt;
&lt;/td&gt;
 &lt;/tr&gt;
&lt;tr&gt;
  &lt;td style=&quot;border-top: none; border: solid windowtext 1.0pt; mso-border-alt: solid windowtext .5pt; mso-border-top-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt; width: 155.8pt;&quot; valign=&quot;top&quot; width=&quot;208&quot;&gt;
  &lt;div class=&quot;MsoNormal&quot; style=&quot;margin-bottom: 0.0001pt;&quot;&gt;
&lt;span style=&quot;font-size: 14.0pt;&quot;&gt;&amp;amp;=&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/div&gt;
&lt;/td&gt;
  &lt;td style=&quot;border-bottom: solid windowtext 1.0pt; border-left: none; border-right: solid windowtext 1.0pt; border-top: none; mso-border-alt: solid windowtext .5pt; mso-border-left-alt: solid windowtext .5pt; mso-border-top-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt; width: 155.85pt;&quot; valign=&quot;top&quot; width=&quot;208&quot;&gt;
  &lt;div class=&quot;MsoNormal&quot; style=&quot;margin-bottom: 0.0001pt;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;/td&gt;
  &lt;td style=&quot;border-bottom: solid windowtext 1.0pt; border-left: none; border-right: solid windowtext 1.0pt; border-top: none; mso-border-alt: solid windowtext .5pt; mso-border-left-alt: solid windowtext .5pt; mso-border-top-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt; width: 155.85pt;&quot; valign=&quot;top&quot; width=&quot;208&quot;&gt;
  &lt;div class=&quot;MsoNormal&quot; style=&quot;margin-bottom: 0.0001pt;&quot;&gt;
&lt;span style=&quot;font-size: 14.0pt;&quot;&gt;C&amp;amp;=2, C will be&amp;nbsp; C&amp;amp;2&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/div&gt;
&lt;/td&gt;
 &lt;/tr&gt;
&lt;tr&gt;
  &lt;td style=&quot;border-top: none; border: solid windowtext 1.0pt; mso-border-alt: solid windowtext .5pt; mso-border-top-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt; width: 155.8pt;&quot; valign=&quot;top&quot; width=&quot;208&quot;&gt;
  &lt;div class=&quot;MsoNormal&quot; style=&quot;margin-bottom: 0.0001pt;&quot;&gt;
&lt;span style=&quot;font-size: 14.0pt;&quot;&gt;^=&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/div&gt;
&lt;/td&gt;
  &lt;td style=&quot;border-bottom: solid windowtext 1.0pt; border-left: none; border-right: solid windowtext 1.0pt; border-top: none; mso-border-alt: solid windowtext .5pt; mso-border-left-alt: solid windowtext .5pt; mso-border-top-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt; width: 155.85pt;&quot; valign=&quot;top&quot; width=&quot;208&quot;&gt;
  &lt;div class=&quot;MsoNormal&quot; style=&quot;margin-bottom: 0.0001pt;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;/td&gt;
  &lt;td style=&quot;border-bottom: solid windowtext 1.0pt; border-left: none; border-right: solid windowtext 1.0pt; border-top: none; mso-border-alt: solid windowtext .5pt; mso-border-left-alt: solid windowtext .5pt; mso-border-top-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt; width: 155.85pt;&quot; valign=&quot;top&quot; width=&quot;208&quot;&gt;
  &lt;div class=&quot;MsoNormal&quot; style=&quot;margin-bottom: 0.0001pt;&quot;&gt;
&lt;span style=&quot;font-size: 14.0pt;&quot;&gt;C^=2, C will be&amp;nbsp; C^2&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/div&gt;
&lt;/td&gt;
 &lt;/tr&gt;
&lt;tr&gt;
  &lt;td style=&quot;border-top: none; border: solid windowtext 1.0pt; mso-border-alt: solid windowtext .5pt; mso-border-top-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt; width: 155.8pt;&quot; valign=&quot;top&quot; width=&quot;208&quot;&gt;
  &lt;div class=&quot;MsoNormal&quot; style=&quot;margin-bottom: 0.0001pt;&quot;&gt;
&lt;span style=&quot;font-size: 14.0pt;&quot;&gt;|=&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/div&gt;
&lt;/td&gt;
  &lt;td style=&quot;border-bottom: solid windowtext 1.0pt; border-left: none; border-right: solid windowtext 1.0pt; border-top: none; mso-border-alt: solid windowtext .5pt; mso-border-left-alt: solid windowtext .5pt; mso-border-top-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt; width: 155.85pt;&quot; valign=&quot;top&quot; width=&quot;208&quot;&gt;
  &lt;div class=&quot;MsoNormal&quot; style=&quot;margin-bottom: 0.0001pt;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;/td&gt;
  &lt;td style=&quot;border-bottom: solid windowtext 1.0pt; border-left: none; border-right: solid windowtext 1.0pt; border-top: none; mso-border-alt: solid windowtext .5pt; mso-border-left-alt: solid windowtext .5pt; mso-border-top-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt; width: 155.85pt;&quot; valign=&quot;top&quot; width=&quot;208&quot;&gt;
  &lt;div class=&quot;MsoNormal&quot; style=&quot;margin-bottom: 0.0001pt;&quot;&gt;
&lt;span style=&quot;font-size: 14.0pt;&quot;&gt;C|=2, C will be&amp;nbsp; C|2&lt;/span&gt;&lt;/div&gt;
&lt;/td&gt;&lt;/tr&gt;
&lt;/tbody&gt;&lt;/table&gt;
&lt;/div&gt;
</content><link rel='replies' type='application/atom+xml' href='http://tutorialterminal.blogspot.com/feeds/7223099420491870775/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://tutorialterminal.blogspot.com/2014/04/operators-in-c-programming.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/630550980296798375/posts/default/7223099420491870775'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/630550980296798375/posts/default/7223099420491870775'/><link rel='alternate' type='text/html' href='http://tutorialterminal.blogspot.com/2014/04/operators-in-c-programming.html' title='OPERATORS IN C PROGRAMMING'/><author><name>InfoTuck</name><uri>http://www.blogger.com/profile/17016689498685423358</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='18' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEisgI3Ncil5ilMjxcK3ufYN7TfeFDOgQkOZ0TpqUUwJVOXMGEDnOYfkooN64nDBC41rYBSBo6l3mT6rtuADi6f8GQ8f0-evyYl2l7GHddwgpO-6Sc0xBBiDHiW5RUqG0M8/s1600/*'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEimQ4Ts3qEeMSJUMpkEhD95G3IJq9Ue8DK9_sUWlJsetHRBYS4gi1QrS9Cr7IdRV_ooKOT9JsMHG0FbD2llyNBWcLbSrgD7KS2Ut-CltH_pxwLxJhZw29B31h6P_5NvOFmv4Of4mqDmzes/s72-c/C.jpg" height="72" width="72"/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-630550980296798375.post-6199096710640352326</id><published>2014-04-16T03:19:00.001-07:00</published><updated>2014-04-16T03:19:08.892-07:00</updated><title type='text'>C LANGUAGE COMMANDS</title><content type='html'>&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;
&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjeKn5jWFxwOySyuKOMgcE5cTmefDyLBeBkUIq3-Q14_AjBkFjFonh04aPL-zPyRQdmOpis4TUPeGj0QTBjl_8I_I7pDjgC1BGfgtmkp28-E8Ixgwq9OhfqvfkjQW8ZPwFBug-VSWjCsZE/s1600/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;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjeKn5jWFxwOySyuKOMgcE5cTmefDyLBeBkUIq3-Q14_AjBkFjFonh04aPL-zPyRQdmOpis4TUPeGj0QTBjl_8I_I7pDjgC1BGfgtmkp28-E8Ixgwq9OhfqvfkjQW8ZPwFBug-VSWjCsZE/s1600/C.jpg&quot; height=&quot;237&quot; width=&quot;400&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: center;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;br /&gt;
Here is a list of various commands used in C language programming:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
1. Comments&lt;br /&gt;
Used to add any comment in a program, it does not participate in programming sequence.&lt;br /&gt;
&amp;nbsp; Syntax: /* add your comment */&lt;br /&gt;
2. For&lt;br /&gt;
This command is used to create for loops where we can add the number of times a process should keep on running in a loop according to our need.&lt;br /&gt;
&amp;nbsp;Syntax: for( initialization ; test; increment)&lt;br /&gt;
&amp;nbsp; &amp;nbsp; {&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; statements;&lt;br /&gt;
&amp;nbsp; &amp;nbsp; }&lt;br /&gt;
3. Include&lt;br /&gt;
It’s a preprocessor directive which is mandatory to load required directories into the program and it is included on top of a program.&lt;br /&gt;
&amp;nbsp;Syntax: # include &amp;lt;file.h&amp;gt;&lt;br /&gt;
4. main&lt;br /&gt;
Main function tells when to initiate the main body of a program. All the main processes come under this command.&lt;br /&gt;
&amp;nbsp;Syntax: int&lt;br /&gt;
&amp;nbsp; &amp;nbsp; main(void)&lt;br /&gt;
&amp;nbsp; &amp;nbsp; {&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; statements;&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; return EXIT_SUCCESS;&lt;br /&gt;
&amp;nbsp; &amp;nbsp; }&lt;br /&gt;
5. Printf&lt;br /&gt;
This command is used to show output anything or display any result.&lt;br /&gt;
&amp;nbsp;Syntax: printf( format string, variable list);&lt;br /&gt;
6. scanf&lt;br /&gt;
Scanf is used to input any data from user of input any result from any other part of program.&lt;br /&gt;
&amp;nbsp;Syntax: scanf( format string, list of &amp;amp;variables);&lt;br /&gt;
7. int&lt;br /&gt;
This command is used to initialize that output or input will be in the form of integer.&lt;br /&gt;
&amp;nbsp;Syntax: int &amp;nbsp; variable list and initial values;&lt;br /&gt;
8. float&lt;br /&gt;
This command is used to initialize that output or input will be in the form of integer or decimal.&lt;br /&gt;
&amp;nbsp;Syntax: float &amp;nbsp; variable list and initial values;&lt;br /&gt;
9. double&lt;br /&gt;
This command is used to initialize that output or input will be in the form of integer or decimal of large value.&lt;br /&gt;
&amp;nbsp;Syntax: double &amp;nbsp; variable list and initial values;&lt;br /&gt;
10. char&lt;br /&gt;
This command is used to initialize that output or input will be in the form of characters which includes alphabets and numbers.&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp;Syntax: char &amp;nbsp; variable list and initial values;&lt;/div&gt;
</content><link rel='replies' type='application/atom+xml' href='http://tutorialterminal.blogspot.com/feeds/6199096710640352326/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://tutorialterminal.blogspot.com/2014/04/c-language-commands.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/630550980296798375/posts/default/6199096710640352326'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/630550980296798375/posts/default/6199096710640352326'/><link rel='alternate' type='text/html' href='http://tutorialterminal.blogspot.com/2014/04/c-language-commands.html' title='C LANGUAGE COMMANDS'/><author><name>InfoTuck</name><uri>http://www.blogger.com/profile/17016689498685423358</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='18' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEisgI3Ncil5ilMjxcK3ufYN7TfeFDOgQkOZ0TpqUUwJVOXMGEDnOYfkooN64nDBC41rYBSBo6l3mT6rtuADi6f8GQ8f0-evyYl2l7GHddwgpO-6Sc0xBBiDHiW5RUqG0M8/s1600/*'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjeKn5jWFxwOySyuKOMgcE5cTmefDyLBeBkUIq3-Q14_AjBkFjFonh04aPL-zPyRQdmOpis4TUPeGj0QTBjl_8I_I7pDjgC1BGfgtmkp28-E8Ixgwq9OhfqvfkjQW8ZPwFBug-VSWjCsZE/s72-c/C.jpg" height="72" width="72"/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-630550980296798375.post-7644249423548268845</id><published>2014-04-15T02:47:00.001-07:00</published><updated>2014-04-15T02:47:23.535-07:00</updated><title type='text'>FEATURES OF C LANGUAGE PROGRAMMING</title><content type='html'>&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;
Relational Operators:&lt;br /&gt;
&lt;br /&gt;
&lt;table border=&quot;1&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot; class=&quot;MsoTableGrid&quot; style=&quot;border-collapse: collapse; border: none; mso-border-alt: solid windowtext .5pt; mso-padding-alt: 0in 5.4pt 0in 5.4pt; mso-yfti-tbllook: 1184;&quot;&gt;
 &lt;tbody&gt;
&lt;tr&gt;
  &lt;td style=&quot;border: solid windowtext 1.0pt; mso-border-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt; width: 40.25pt;&quot; valign=&quot;top&quot; width=&quot;54&quot;&gt;&lt;div class=&quot;MsoNormal&quot; style=&quot;margin-bottom: 0.0001pt;&quot;&gt;
&lt;span style=&quot;font-family: &#39;Courier New&#39;; font-size: 14pt;&quot;&gt;&amp;gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/span&gt;&lt;/div&gt;
&lt;/td&gt;
  &lt;td style=&quot;border-left: none; border: solid windowtext 1.0pt; mso-border-alt: solid windowtext .5pt; mso-border-left-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt; width: 225.0pt;&quot; valign=&quot;top&quot; width=&quot;300&quot;&gt;&lt;div class=&quot;MsoNormal&quot; style=&quot;margin-bottom: 0.0001pt;&quot;&gt;
&lt;span style=&quot;font-family: &#39;Courier New&#39;; font-size: 14pt;&quot;&gt;Greater than&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/div&gt;
&lt;/td&gt;
  &lt;td style=&quot;border-left: none; border: solid windowtext 1.0pt; mso-border-alt: solid windowtext .5pt; mso-border-left-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt; width: 202.25pt;&quot; valign=&quot;top&quot; width=&quot;270&quot;&gt;&lt;div class=&quot;MsoNormal&quot; style=&quot;margin-bottom: 0.0001pt;&quot;&gt;
&lt;span style=&quot;font-family: &#39;Courier New&#39;; font-size: 14pt;&quot;&gt;7 &amp;gt; 5&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/div&gt;
&lt;/td&gt;
 &lt;/tr&gt;
&lt;tr&gt;
  &lt;td style=&quot;border-top: none; border: solid windowtext 1.0pt; mso-border-alt: solid windowtext .5pt; mso-border-top-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt; width: 40.25pt;&quot; valign=&quot;top&quot; width=&quot;54&quot;&gt;&lt;div class=&quot;MsoNormal&quot; style=&quot;margin-bottom: 0.0001pt;&quot;&gt;
&lt;span style=&quot;font-family: &#39;Courier New&#39;; font-size: 14pt;&quot;&gt;&amp;lt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/span&gt;&lt;/div&gt;
&lt;/td&gt;
  &lt;td style=&quot;border-bottom: solid windowtext 1.0pt; border-left: none; border-right: solid windowtext 1.0pt; border-top: none; mso-border-alt: solid windowtext .5pt; mso-border-left-alt: solid windowtext .5pt; mso-border-top-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt; width: 225.0pt;&quot; valign=&quot;top&quot; width=&quot;300&quot;&gt;&lt;div class=&quot;MsoNormal&quot; style=&quot;margin-bottom: 0.0001pt;&quot;&gt;
&lt;span style=&quot;font-family: &#39;Courier New&#39;; font-size: 14pt;&quot;&gt;Less than&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/div&gt;
&lt;/td&gt;
  &lt;td style=&quot;border-bottom: solid windowtext 1.0pt; border-left: none; border-right: solid windowtext 1.0pt; border-top: none; mso-border-alt: solid windowtext .5pt; mso-border-left-alt: solid windowtext .5pt; mso-border-top-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt; width: 202.25pt;&quot; valign=&quot;top&quot; width=&quot;270&quot;&gt;&lt;div class=&quot;MsoNormal&quot; style=&quot;margin-bottom: 0.0001pt;&quot;&gt;
&lt;span style=&quot;font-family: &#39;Courier New&#39;; font-size: 14pt;&quot;&gt;5 &amp;lt; 7&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/div&gt;
&lt;/td&gt;
 &lt;/tr&gt;
&lt;tr&gt;
  &lt;td style=&quot;border-top: none; border: solid windowtext 1.0pt; mso-border-alt: solid windowtext .5pt; mso-border-top-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt; width: 40.25pt;&quot; valign=&quot;top&quot; width=&quot;54&quot;&gt;&lt;div class=&quot;MsoNormal&quot; style=&quot;margin-bottom: 0.0001pt;&quot;&gt;
&lt;span style=&quot;font-family: &#39;Courier New&#39;; font-size: 14pt;&quot;&gt;&amp;gt;=&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/div&gt;
&lt;/td&gt;
  &lt;td style=&quot;border-bottom: solid windowtext 1.0pt; border-left: none; border-right: solid windowtext 1.0pt; border-top: none; mso-border-alt: solid windowtext .5pt; mso-border-left-alt: solid windowtext .5pt; mso-border-top-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt; width: 225.0pt;&quot; valign=&quot;top&quot; width=&quot;300&quot;&gt;&lt;div class=&quot;MsoNormal&quot; style=&quot;margin-bottom: 0.0001pt;&quot;&gt;
&lt;span style=&quot;font-family: &#39;Courier New&#39;; font-size: 14pt;&quot;&gt;Greater than or equal to&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/div&gt;
&lt;/td&gt;
  &lt;td style=&quot;border-bottom: solid windowtext 1.0pt; border-left: none; border-right: solid windowtext 1.0pt; border-top: none; mso-border-alt: solid windowtext .5pt; mso-border-left-alt: solid windowtext .5pt; mso-border-top-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt; width: 202.25pt;&quot; valign=&quot;top&quot; width=&quot;270&quot;&gt;&lt;div class=&quot;MsoNormal&quot; style=&quot;margin-bottom: 0.0001pt;&quot;&gt;
&lt;span style=&quot;font-family: &#39;Courier New&#39;; font-size: 14pt;&quot;&gt;6 &amp;gt;= 6&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/div&gt;
&lt;/td&gt;
 &lt;/tr&gt;
&lt;tr&gt;
  &lt;td style=&quot;border-top: none; border: solid windowtext 1.0pt; mso-border-alt: solid windowtext .5pt; mso-border-top-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt; width: 40.25pt;&quot; valign=&quot;top&quot; width=&quot;54&quot;&gt;&lt;div class=&quot;MsoNormal&quot; style=&quot;margin-bottom: 0.0001pt;&quot;&gt;
&lt;span style=&quot;font-family: &#39;Courier New&#39;; font-size: 14pt;&quot;&gt;&amp;lt;=&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/div&gt;
&lt;/td&gt;
  &lt;td style=&quot;border-bottom: solid windowtext 1.0pt; border-left: none; border-right: solid windowtext 1.0pt; border-top: none; mso-border-alt: solid windowtext .5pt; mso-border-left-alt: solid windowtext .5pt; mso-border-top-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt; width: 225.0pt;&quot; valign=&quot;top&quot; width=&quot;300&quot;&gt;&lt;div class=&quot;MsoNormal&quot; style=&quot;margin-bottom: 0.0001pt;&quot;&gt;
&lt;span style=&quot;font-family: &#39;Courier New&#39;; font-size: 14pt;&quot;&gt;Less than or equal to&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/div&gt;
&lt;/td&gt;
  &lt;td style=&quot;border-bottom: solid windowtext 1.0pt; border-left: none; border-right: solid windowtext 1.0pt; border-top: none; mso-border-alt: solid windowtext .5pt; mso-border-left-alt: solid windowtext .5pt; mso-border-top-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt; width: 202.25pt;&quot; valign=&quot;top&quot; width=&quot;270&quot;&gt;&lt;div class=&quot;MsoNormal&quot; style=&quot;margin-bottom: 0.0001pt;&quot;&gt;
&lt;span style=&quot;font-family: &#39;Courier New&#39;; font-size: 14pt;&quot;&gt;5 &amp;lt;= 6&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/div&gt;
&lt;/td&gt;
 &lt;/tr&gt;
&lt;tr&gt;
  &lt;td style=&quot;border-top: none; border: solid windowtext 1.0pt; mso-border-alt: solid windowtext .5pt; mso-border-top-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt; width: 40.25pt;&quot; valign=&quot;top&quot; width=&quot;54&quot;&gt;&lt;div class=&quot;MsoNormal&quot; style=&quot;margin-bottom: 0.0001pt;&quot;&gt;
&lt;span style=&quot;font-family: &#39;Courier New&#39;; font-size: 14pt;&quot;&gt;==&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/div&gt;
&lt;/td&gt;
  &lt;td style=&quot;border-bottom: solid windowtext 1.0pt; border-left: none; border-right: solid windowtext 1.0pt; border-top: none; mso-border-alt: solid windowtext .5pt; mso-border-left-alt: solid windowtext .5pt; mso-border-top-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt; width: 225.0pt;&quot; valign=&quot;top&quot; width=&quot;300&quot;&gt;&lt;div class=&quot;MsoNormal&quot; style=&quot;margin-bottom: 0.0001pt;&quot;&gt;
&lt;span style=&quot;font-family: &#39;Courier New&#39;; font-size: 14pt;&quot;&gt;Equal to&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/div&gt;
&lt;/td&gt;
  &lt;td style=&quot;border-bottom: solid windowtext 1.0pt; border-left: none; border-right: solid windowtext 1.0pt; border-top: none; mso-border-alt: solid windowtext .5pt; mso-border-left-alt: solid windowtext .5pt; mso-border-top-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt; width: 202.25pt;&quot; valign=&quot;top&quot; width=&quot;270&quot;&gt;&lt;div class=&quot;MsoNormal&quot; style=&quot;margin-bottom: 0.0001pt;&quot;&gt;
&lt;span style=&quot;font-family: &#39;Courier New&#39;; font-size: 14pt;&quot;&gt;8 == 8&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/div&gt;
&lt;/td&gt;
 &lt;/tr&gt;
&lt;tr&gt;
  &lt;td style=&quot;border-top: none; border: solid windowtext 1.0pt; mso-border-alt: solid windowtext .5pt; mso-border-top-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt; width: 40.25pt;&quot; valign=&quot;top&quot; width=&quot;54&quot;&gt;&lt;div class=&quot;MsoNormal&quot; style=&quot;margin-bottom: 0.0001pt;&quot;&gt;
&lt;span style=&quot;font-family: &#39;Courier New&#39;; font-size: 14pt;&quot;&gt;!=&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/div&gt;
&lt;/td&gt;
  &lt;td style=&quot;border-bottom: solid windowtext 1.0pt; border-left: none; border-right: solid windowtext 1.0pt; border-top: none; mso-border-alt: solid windowtext .5pt; mso-border-left-alt: solid windowtext .5pt; mso-border-top-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt; width: 225.0pt;&quot; valign=&quot;top&quot; width=&quot;300&quot;&gt;&lt;div class=&quot;MsoNormal&quot; style=&quot;margin-bottom: 0.0001pt;&quot;&gt;
&lt;span style=&quot;font-family: &#39;Courier New&#39;; font-size: 14pt;&quot;&gt;Not equal to&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/div&gt;
&lt;/td&gt;
  &lt;td style=&quot;border-bottom: solid windowtext 1.0pt; border-left: none; border-right: solid windowtext 1.0pt; border-top: none; mso-border-alt: solid windowtext .5pt; mso-border-left-alt: solid windowtext .5pt; mso-border-top-alt: solid windowtext .5pt; padding: 0in 5.4pt 0in 5.4pt; width: 202.25pt;&quot; valign=&quot;top&quot; width=&quot;270&quot;&gt;&lt;div class=&quot;MsoNormal&quot; style=&quot;margin-bottom: 0.0001pt;&quot;&gt;
&lt;span style=&quot;font-family: &#39;Courier New&#39;; font-size: 14pt;&quot;&gt;5 != 7&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/div&gt;
&lt;/td&gt;
 &lt;/tr&gt;
&lt;/tbody&gt;&lt;/table&gt;
&lt;br /&gt;
&lt;br /&gt;
If condition:&lt;br /&gt;
If condition is used to put a condition, so that the program should proceed if the condition is satisfied.&lt;br /&gt;
Syntax:&lt;br /&gt;
if ( statement is TRUE )&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; Execute this line of code&lt;br /&gt;
In this, if condition will first check if the condition is true or not, if it stands true it will execute the next line and if it’s not it will stop.&lt;br /&gt;
&lt;br /&gt;
ELSE&lt;br /&gt;
Else is used to give other alternate if the “if” condition stands false, so there’s another statement to execute.&lt;br /&gt;
Syntax is:&lt;br /&gt;
if (TRUE) {&lt;br /&gt;
Execute these statements if TRUE&lt;br /&gt;
}&lt;br /&gt;
else {&lt;br /&gt;
Execute these statements if FALSE&lt;br /&gt;
}&lt;br /&gt;
Else if:&lt;br /&gt;
This function is used to run a loop using this command. This comprises of both functions “if” and “else” both.&lt;br /&gt;
&lt;br /&gt;
For example:&lt;br /&gt;
#include &amp;lt;stdio.h&amp;gt;&lt;br /&gt;
int main()&lt;br /&gt;
{&lt;br /&gt;
&amp;nbsp; &amp;nbsp; int age;&lt;br /&gt;
&amp;nbsp; &amp;nbsp; printf( &quot;Please enter your age&quot; ); &lt;br /&gt;
&amp;nbsp; &amp;nbsp; scanf( &quot;%d&quot;, &amp;amp;age ); &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;br /&gt;
&amp;nbsp; &amp;nbsp; if ( age &amp;lt; 100 ) { &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; printf (&quot;You are pretty young!\n&quot; );&lt;br /&gt;
&amp;nbsp; &amp;nbsp; }&lt;br /&gt;
&amp;nbsp; &amp;nbsp; else if ( age == 100 ) { &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; printf( &quot;You are old\n&quot; ); &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;br /&gt;
&amp;nbsp; &amp;nbsp; }&lt;br /&gt;
&amp;nbsp; &amp;nbsp; else {&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; printf( &quot;You are really old\n&quot; ); &amp;nbsp; &amp;nbsp;&lt;br /&gt;
&amp;nbsp; &amp;nbsp; }&lt;br /&gt;
&amp;nbsp; return 0;&lt;br /&gt;
&lt;div&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;/div&gt;
</content><link rel='replies' type='application/atom+xml' href='http://tutorialterminal.blogspot.com/feeds/7644249423548268845/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://tutorialterminal.blogspot.com/2014/04/features-of-c-language-programming.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/630550980296798375/posts/default/7644249423548268845'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/630550980296798375/posts/default/7644249423548268845'/><link rel='alternate' type='text/html' href='http://tutorialterminal.blogspot.com/2014/04/features-of-c-language-programming.html' title='FEATURES OF C LANGUAGE PROGRAMMING'/><author><name>InfoTuck</name><uri>http://www.blogger.com/profile/17016689498685423358</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='18' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEisgI3Ncil5ilMjxcK3ufYN7TfeFDOgQkOZ0TpqUUwJVOXMGEDnOYfkooN64nDBC41rYBSBo6l3mT6rtuADi6f8GQ8f0-evyYl2l7GHddwgpO-6Sc0xBBiDHiW5RUqG0M8/s1600/*'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-630550980296798375.post-2321677938047825593</id><published>2014-04-12T00:02:00.001-07:00</published><updated>2014-04-12T00:02:49.659-07:00</updated><title type='text'>C LANGUAGE: 101</title><content type='html'>&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;
Tokens: Tokens are either keyword, identifier, constant, string or symbol which are used in C language programming.&lt;br /&gt;
&lt;br /&gt;
For example:&lt;br /&gt;
printf(“Hello everyone”);&lt;br /&gt;
Here the tokens are:&lt;br /&gt;
1) printf&lt;br /&gt;
2) (&lt;br /&gt;
3) “&lt;br /&gt;
4) Hello everyone&lt;br /&gt;
5) ;&lt;br /&gt;
&lt;br /&gt;
Use of Semicolons:&lt;br /&gt;
Semicolons are used as sentence terminators. Whenever the compiler see a semicolon, it takes the sentence preceding it as one complete instruction and first runs that command and then moves to next line.&lt;br /&gt;
&lt;br /&gt;
Comments:&lt;br /&gt;
&lt;br /&gt;
Comments are added in C language program so as to improve the readability of a program. Adding comments make it easy for others as well as programmers who programmed it easy to spot which part of program performs which function.&lt;br /&gt;
Comments are added by adding prefix /* and suffix */&lt;br /&gt;
&lt;br /&gt;
For example:&lt;br /&gt;
&lt;br /&gt;
/* this is my first comment */&lt;br /&gt;
The comment portion does not participate in programming and are for helping/ marking purpose only.&lt;br /&gt;
Keywords:&lt;br /&gt;
Keywords are reserved words which have special functions defined in the program. These words cannot be used for some other purposes or as a constant.&lt;br /&gt;
&lt;br /&gt;
Some of the example of keywords are:&lt;br /&gt;
&lt;br /&gt;
Auto, else, long, switch, break, enum, register, typedef, case, extern, return, union, char, float, short, unsigned, const, for, signed, void, continue, goto, sizeof, volatile, default, if, static, while, do, int, struct, _Packed, double and many more. &amp;nbsp;&lt;/div&gt;
</content><link rel='replies' type='application/atom+xml' href='http://tutorialterminal.blogspot.com/feeds/2321677938047825593/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://tutorialterminal.blogspot.com/2014/04/c-language-101.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/630550980296798375/posts/default/2321677938047825593'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/630550980296798375/posts/default/2321677938047825593'/><link rel='alternate' type='text/html' href='http://tutorialterminal.blogspot.com/2014/04/c-language-101.html' title='C LANGUAGE: 101'/><author><name>InfoTuck</name><uri>http://www.blogger.com/profile/17016689498685423358</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='18' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEisgI3Ncil5ilMjxcK3ufYN7TfeFDOgQkOZ0TpqUUwJVOXMGEDnOYfkooN64nDBC41rYBSBo6l3mT6rtuADi6f8GQ8f0-evyYl2l7GHddwgpO-6Sc0xBBiDHiW5RUqG0M8/s1600/*'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-630550980296798375.post-2314464662277009459</id><published>2014-04-11T03:59:00.000-07:00</published><updated>2014-04-11T03:59:44.311-07:00</updated><title type='text'>C Programming: Introduction </title><content type='html'>&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjcDsvj0yQ7FxhqsXR9t144J_Pj0DtKcQMr0Pd35eJ9wuz3_sMLZ2BuzqA0lGz0cwDmVPBETLtKhk-OXLlg16vO-kbH1-saiQaNFKJc_pFaPpF17Jnugmrrp1HbctgGLPoWHa8AeGkXMqI/s1600/images+(1).jpg&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjcDsvj0yQ7FxhqsXR9t144J_Pj0DtKcQMr0Pd35eJ9wuz3_sMLZ2BuzqA0lGz0cwDmVPBETLtKhk-OXLlg16vO-kbH1-saiQaNFKJc_pFaPpF17Jnugmrrp1HbctgGLPoWHa8AeGkXMqI/s1600/images+(1).jpg&quot; height=&quot;276&quot; width=&quot;400&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;br /&gt;
&lt;br /&gt;
C is a high level programming language developed by Dennis Ritchie. Originally developed for UNIX operating system and was first implemented in the year of 1972 on Digital Equipment Corporation PDP-11.&lt;br /&gt;
There are in total 3 level of languages:&lt;br /&gt;
• Machine Language&lt;br /&gt;
• Assembly Language&lt;br /&gt;
• High Level Language&lt;br /&gt;
Machine Language deals with binary codes that is on and off (1’s and 0’s). This language is easily understood by machine and hence called as machine language.&lt;br /&gt;
Assembly Language can understand few words like add for addition, sub for subtraction. Programmers had to memorize all those mnemonics to create a program.&lt;br /&gt;
High Level Language are modern level programming platforms which in most efficient and easy to use as compared to other level of programming. Here we can use phrases or words which are similar to what we read or write.&lt;br /&gt;
C Programming language is widely used because of many reasons, few are listed bellow:&lt;br /&gt;
• Very easy to learn&lt;br /&gt;
• Language is structured&lt;br /&gt;
• Creates efficient programs&lt;br /&gt;
• Handle low level tasks like accessing low level memory&lt;br /&gt;
• Can be operated in various computers&lt;br /&gt;
&lt;div&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;/div&gt;
</content><link rel='replies' type='application/atom+xml' href='http://tutorialterminal.blogspot.com/feeds/2314464662277009459/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://tutorialterminal.blogspot.com/2014/04/c-programming-introduction.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/630550980296798375/posts/default/2314464662277009459'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/630550980296798375/posts/default/2314464662277009459'/><link rel='alternate' type='text/html' href='http://tutorialterminal.blogspot.com/2014/04/c-programming-introduction.html' title='C Programming: Introduction '/><author><name>InfoTuck</name><uri>http://www.blogger.com/profile/17016689498685423358</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='18' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEisgI3Ncil5ilMjxcK3ufYN7TfeFDOgQkOZ0TpqUUwJVOXMGEDnOYfkooN64nDBC41rYBSBo6l3mT6rtuADi6f8GQ8f0-evyYl2l7GHddwgpO-6Sc0xBBiDHiW5RUqG0M8/s1600/*'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjcDsvj0yQ7FxhqsXR9t144J_Pj0DtKcQMr0Pd35eJ9wuz3_sMLZ2BuzqA0lGz0cwDmVPBETLtKhk-OXLlg16vO-kbH1-saiQaNFKJc_pFaPpF17Jnugmrrp1HbctgGLPoWHa8AeGkXMqI/s72-c/images+(1).jpg" height="72" width="72"/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-630550980296798375.post-4851686282972873444</id><published>2014-04-03T02:18:00.002-07:00</published><updated>2014-04-03T02:18:32.444-07:00</updated><title type='text'></title><content type='html'>&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;
&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;
&lt;div class=&quot;MsoNormal&quot;&gt;
&lt;span style=&quot;font-size: 14.0pt; line-height: 107%;&quot;&gt;What CSS
means.?&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div class=&quot;MsoNormal&quot;&gt;
&lt;b&gt;&lt;span style=&quot;font-size: 14.0pt; line-height: 107%;&quot;&gt;CSS&lt;/span&gt;&lt;/b&gt;&lt;span style=&quot;font-size: 14.0pt; line-height: 107%;&quot;&gt;&amp;nbsp;is an acronym for&amp;nbsp;&lt;b&gt;C&lt;/b&gt;ascading&amp;nbsp;&lt;b&gt;S&lt;/b&gt;tyle&amp;nbsp;&lt;b&gt;S&lt;/b&gt;heets.
Styles are used to define HTML elements. Styles were added to HTML 4.0&amp;nbsp;and can solve a variety of problems.External
Style Sheets are stored in&amp;nbsp;CSS
files and can make our work easier.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div class=&quot;MsoNormal&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;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEh0FyseEFxOaVcHMeg03TV4g_HNxQ7cTnyDQ4GefQHd8m0xtJ2YPWwTeimJBKsOXZVc7FfBH0AjDDIqTbWiz0VPPlsMIgFs3RnQf78Pc52ief50IL41Jojwm3fMPma8GSfXg3GPQ7LqQgM/s1600/html-css.jpg&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEh0FyseEFxOaVcHMeg03TV4g_HNxQ7cTnyDQ4GefQHd8m0xtJ2YPWwTeimJBKsOXZVc7FfBH0AjDDIqTbWiz0VPPlsMIgFs3RnQf78Pc52ief50IL41Jojwm3fMPma8GSfXg3GPQ7LqQgM/s1600/html-css.jpg&quot; height=&quot;448&quot; width=&quot;500&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;br /&gt;
&lt;div class=&quot;MsoNormal&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;MsoNormal&quot;&gt;
&lt;span style=&quot;font-size: 14.0pt; line-height: 107%;&quot;&gt;SAMPLE CODE:&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div class=&quot;MsoNormal&quot;&gt;
&lt;i&gt;&lt;span style=&quot;font-size: 14.0pt; line-height: 107%;&quot;&gt;&amp;lt;!DOCTYPE html&amp;gt;&lt;br /&gt;
&amp;lt;html&amp;gt;&lt;br /&gt;
&amp;lt;head&amp;gt;&lt;br /&gt;
&amp;lt;style&amp;gt;&lt;br /&gt;
body&lt;br /&gt;
{&lt;br /&gt;
background-color:green;&lt;br /&gt;
}&lt;br /&gt;
h1&lt;br /&gt;
{&lt;br /&gt;
color:white;&lt;br /&gt;
text-align:center;&lt;br /&gt;
}&lt;br /&gt;
p&lt;br /&gt;
{&lt;br /&gt;
font-family:&quot;Times New Roman&quot;;&lt;br /&gt;
font-size:20px;&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/style&amp;gt;&lt;br /&gt;
&amp;lt;/head&amp;gt;&lt;br /&gt;
&amp;lt;body&amp;gt;&lt;br /&gt;
&amp;lt;h1&amp;gt;infotuck!&amp;lt;/h1&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;This is a paragraph.&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;/body&amp;gt;&lt;br /&gt;
&amp;lt;/html&amp;gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/i&gt;&lt;/div&gt;
&lt;div class=&quot;MsoNormal&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;MsoNormal&quot;&gt;
&lt;span style=&quot;font-size: 14.0pt; line-height: 107%;&quot;&gt;In this
initially the background color is set to green. This can be varied accordingly
to our needs by changing the name of color corresponding to &lt;i&gt;background-color:.&lt;o:p&gt;&lt;/o:p&gt;&lt;/i&gt;&lt;/span&gt;&lt;/div&gt;
&lt;br /&gt;
&lt;div class=&quot;MsoNormal&quot;&gt;
&lt;span style=&quot;font-size: 14.0pt; line-height: 107%;&quot;&gt;Now heading
is set along with the color of the font. In above stated example the color is
set to white and can also be changed accordingly.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;
</content><link rel='replies' type='application/atom+xml' href='http://tutorialterminal.blogspot.com/feeds/4851686282972873444/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://tutorialterminal.blogspot.com/2014/04/what-cssmeans.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/630550980296798375/posts/default/4851686282972873444'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/630550980296798375/posts/default/4851686282972873444'/><link rel='alternate' type='text/html' href='http://tutorialterminal.blogspot.com/2014/04/what-cssmeans.html' title=''/><author><name>InfoTuck</name><uri>http://www.blogger.com/profile/17016689498685423358</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='18' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEisgI3Ncil5ilMjxcK3ufYN7TfeFDOgQkOZ0TpqUUwJVOXMGEDnOYfkooN64nDBC41rYBSBo6l3mT6rtuADi6f8GQ8f0-evyYl2l7GHddwgpO-6Sc0xBBiDHiW5RUqG0M8/s1600/*'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEh0FyseEFxOaVcHMeg03TV4g_HNxQ7cTnyDQ4GefQHd8m0xtJ2YPWwTeimJBKsOXZVc7FfBH0AjDDIqTbWiz0VPPlsMIgFs3RnQf78Pc52ief50IL41Jojwm3fMPma8GSfXg3GPQ7LqQgM/s72-c/html-css.jpg" height="72" width="72"/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-630550980296798375.post-7079925823874853826</id><published>2014-03-27T04:44:00.001-07:00</published><updated>2014-03-27T04:44:39.616-07:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="HTML Tutorials"/><title type='text'>HTML BEGINEER</title><content type='html'>&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;
HTML can be edited by using a professional HTML editor like :&lt;br /&gt;
&lt;br /&gt;
&lt;ul style=&quot;text-align: left;&quot;&gt;
&lt;li&gt;Adobe Dreamweaver&lt;/li&gt;
&lt;li&gt;Microsoft Expression Web&lt;/li&gt;
&lt;li&gt;CoffeeCup HTML Editor&lt;/li&gt;
&lt;/ul&gt;
&lt;div&gt;
&lt;br /&gt;
However, for learning HTML we recommend a text editor like Notepad (PC).We believe simplicity will be the best start.&lt;br /&gt;
Following 4 steps is sufficient to create your first web page using Notepad&lt;br /&gt;
&lt;br /&gt;
Step 1: Start Notepad&lt;br /&gt;
To start Notepad go to:&lt;br /&gt;
Start&lt;br /&gt;
&amp;nbsp; &amp;nbsp; All Programs&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Accessories&lt;br /&gt;
&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Notepad&lt;br /&gt;
&lt;br /&gt;
Step 2: Edit Your HTML with Notepad&lt;br /&gt;
Type your HTML code into your Notepad:&lt;br /&gt;
&lt;br /&gt;
Step 3: Save Your HTML&lt;br /&gt;
Select Save as.. in Notepad&#39;s file menu.&lt;br /&gt;
Use the extension .html or .htl to save the file&lt;br /&gt;
Save in any folder, like infotuck.&lt;br /&gt;
&lt;br /&gt;
Step 4: Run the HTML in Your Browser&lt;br /&gt;
Double click on your HTML file and your first web page will open.&lt;br /&gt;
&lt;br /&gt;
he &amp;lt;p&amp;gt; element:&lt;br /&gt;
&amp;lt;p&amp;gt;My Paragraph.&amp;lt;/p&amp;gt;&lt;br /&gt;
The &amp;lt;p&amp;gt; symbol is used to define paragraph.&lt;br /&gt;
It has a start point &amp;lt;p&amp;gt; and an end point &amp;lt;/p&amp;gt;.&lt;br /&gt;
The content is: My Paragraph.&lt;br /&gt;
The &amp;lt;body&amp;gt; element:&lt;br /&gt;
&amp;lt;body&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;This is my first paragraph.&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;/body&amp;gt;&lt;br /&gt;
The &amp;lt;body&amp;gt; symbol is used to define the body of an HTML file.&lt;br /&gt;
The symbol has a start point &amp;lt;body&amp;gt; and an end pont &amp;lt;/body&amp;gt;.&lt;br /&gt;
The element content is another HTML element (a p element).&lt;br /&gt;
The &amp;lt;html&amp;gt; element:&lt;br /&gt;
&amp;lt;html&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;body&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;This is my first paragraph.&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;/body&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/html&amp;gt;&lt;br /&gt;
The &amp;lt;html&amp;gt; element defines the whole HTML document.&lt;br /&gt;
The element has a start tag &amp;lt;html&amp;gt; and an end tag &amp;lt;/html&amp;gt;.&lt;br /&gt;
The element content is another HTML element (the body element).&lt;br /&gt;
The HTML &amp;lt;a&amp;gt; tag defines a hyperlink.&lt;br /&gt;
The html link:&lt;br /&gt;
A hyperlink (or link) is a word, group of words, or image that you can click on to jump to another document.&lt;br /&gt;
The pointer turns into a little hand when we hover the pointer over the link&lt;br /&gt;
The most important attribute of the &amp;lt;a&amp;gt; element is the href attribute, which indicates the link&#39;s destination.&lt;br /&gt;
&lt;br /&gt;
HTML Link Syntax&lt;br /&gt;
The HTML code for a link is an easy piece of cake. It looks like this:&lt;br /&gt;
Syntax:&lt;br /&gt;
&amp;lt;a href=&quot;url&quot;&amp;gt;Link text&amp;lt;/a&amp;gt;&lt;br /&gt;
Example&lt;br /&gt;
&amp;lt;a href=&quot;http://tutorialterminal.blogspot.in/&quot;&amp;gt;Visit our blog&amp;lt;/a&amp;gt;&lt;/div&gt;
&lt;/div&gt;
</content><link rel='replies' type='application/atom+xml' href='http://tutorialterminal.blogspot.com/feeds/7079925823874853826/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://tutorialterminal.blogspot.com/2014/03/html-begineer.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/630550980296798375/posts/default/7079925823874853826'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/630550980296798375/posts/default/7079925823874853826'/><link rel='alternate' type='text/html' href='http://tutorialterminal.blogspot.com/2014/03/html-begineer.html' title='HTML BEGINEER'/><author><name>InfoTuck</name><uri>http://www.blogger.com/profile/17016689498685423358</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='18' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEisgI3Ncil5ilMjxcK3ufYN7TfeFDOgQkOZ0TpqUUwJVOXMGEDnOYfkooN64nDBC41rYBSBo6l3mT6rtuADi6f8GQ8f0-evyYl2l7GHddwgpO-6Sc0xBBiDHiW5RUqG0M8/s1600/*'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-630550980296798375.post-918072191741314015</id><published>2014-03-26T03:47:00.000-07:00</published><updated>2014-03-26T03:48:12.561-07:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="HTML Tutorials"/><title type='text'>HTML BASICS</title><content type='html'>&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;
&lt;h2 style=&quot;text-align: center;&quot;&gt;
HTML BASICS&lt;/h2&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhcHfhDgZoJk5Yrtfzt8dIXtAluL-c1aAU1FPAY5jHsGj6kWhX7S7W7zKF4F67Osyd2JbhVmuUbAfE28H3k4Vit-vJjWplqANFv9j46eSjPGeMwWhKUdYFyLyoppBGwtuNXCfLy80T1gUw/s1600/images.jpg&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhcHfhDgZoJk5Yrtfzt8dIXtAluL-c1aAU1FPAY5jHsGj6kWhX7S7W7zKF4F67Osyd2JbhVmuUbAfE28H3k4Vit-vJjWplqANFv9j46eSjPGeMwWhKUdYFyLyoppBGwtuNXCfLy80T1gUw/s1600/images.jpg&quot; height=&quot;301&quot; width=&quot;400&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;div align=&quot;center&quot; class=&quot;MsoNormal&quot; style=&quot;text-align: center;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;MsoNormal&quot;&gt;
In our previous blog, we’ve told what HTML really is along
with the very basic pre-requisite of it. And now we’ll start with the basic
working of HTML and how HTML codes are generated.&lt;br /&gt;
HTML (Hyper Text Markup Language) is used almost every day by us in our day to
day life and one such example is the World Wide Web (www). Everything in
internet consists of HTML and HTML links.. &lt;/div&gt;
&lt;div class=&quot;MsoNormal&quot;&gt;
So, starting with the basic program. Initially we start with
giving HTML file a name.&lt;br /&gt;
For example we want to create a HTML file which will display one heading and a
part of a paragraph.&lt;/div&gt;
&lt;div class=&quot;MsoNormal&quot;&gt;
So the syntax will be:&lt;/div&gt;
&lt;div class=&quot;MsoNormal&quot;&gt;
&amp;lt;!DOCTYPE html&amp;gt;&lt;br /&gt;
&amp;lt;html&amp;gt;&lt;br /&gt;
&amp;lt;body&amp;gt;&lt;br /&gt;
&amp;lt;h1&amp;gt;My First Heading&amp;lt;/h1&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;My first paragraph.&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;/body&amp;gt;&lt;br /&gt;
&amp;lt;/html&amp;gt;&lt;/div&gt;
&lt;div class=&quot;MsoNormal&quot;&gt;
Output is:&lt;/div&gt;
&lt;h3 style=&quot;text-align: left;&quot;&gt;
My First Heading&lt;/h3&gt;
&lt;h1&gt;
&lt;o:p&gt;&lt;/o:p&gt;&lt;/h1&gt;
&lt;span style=&quot;font-size: 13.5pt;&quot;&gt;My first paragraph.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;br /&gt;
&lt;div class=&quot;MsoNormal&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;MsoNormal&quot;&gt;
Anything which is written between &amp;lt;h1&amp;gt; and &amp;lt;/h1&amp;gt;
will be the heading and anything written between &amp;lt;p&amp;gt; and &amp;lt;/p&amp;gt; will
be part of paragraph.&lt;/div&gt;
&lt;div class=&quot;MsoNormal&quot;&gt;
You can put up any number of heading and paragraphs. &lt;/div&gt;
&lt;div class=&quot;MsoNormal&quot;&gt;
&amp;lt;h1&amp;gt; means the first heading n will be the biggest in
size. To put up a smaller heading keep on incrementing the number and size of
heading will reduce. For example &amp;lt;h2&amp;gt; heading will be smaller as compared
to &amp;lt;h1&amp;gt; heading and so on.&lt;/div&gt;
&lt;div class=&quot;MsoNormal&quot;&gt;
This can be seen with the following source code:&lt;/div&gt;
&lt;div class=&quot;MsoNormal&quot;&gt;
&amp;lt;!DOCTYPE html&amp;gt;&lt;br /&gt;
&amp;lt;html&amp;gt;&lt;br /&gt;
&amp;lt;body&amp;gt;&lt;br /&gt;
&amp;lt;h1&amp;gt;This is heading 1&amp;lt;/h1&amp;gt;&lt;br /&gt;
&amp;lt;h2&amp;gt;This is heading 2&amp;lt;/h2&amp;gt;&lt;br /&gt;
&amp;lt;h3&amp;gt;This is heading 3&amp;lt;/h3&amp;gt;&lt;br /&gt;
&amp;lt;h4&amp;gt;This is heading 4&amp;lt;/h4&amp;gt;&lt;br /&gt;
&amp;lt;h5&amp;gt;This is heading 5&amp;lt;/h5&amp;gt;&lt;br /&gt;
&amp;lt;h6&amp;gt;This is heading 6&amp;lt;/h6&amp;gt;&lt;br /&gt;
&amp;lt;/body&amp;gt;&lt;br /&gt;
&amp;lt;/html&amp;gt;&lt;/div&gt;
&lt;div class=&quot;MsoNormal&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;MsoNormal&quot;&gt;
The output will be:&lt;/div&gt;
&lt;div class=&quot;MsoNormal&quot;&gt;
&lt;b&gt;&lt;span style=&quot;font-family: &#39;Times New Roman&#39;, serif; font-size: 24pt;&quot;&gt;This is heading 1&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/b&gt;&lt;/div&gt;
&lt;div class=&quot;MsoNormal&quot;&gt;
&lt;b&gt;&lt;span style=&quot;font-family: &#39;Times New Roman&#39;, serif; font-size: 18pt;&quot;&gt;This is heading 2&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/b&gt;&lt;/div&gt;
&lt;div class=&quot;MsoNormal&quot;&gt;
&lt;b&gt;&lt;span style=&quot;font-family: &#39;Times New Roman&#39;, serif; font-size: 13.5pt;&quot;&gt;This is heading 3&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/b&gt;&lt;/div&gt;
&lt;div class=&quot;MsoNormal&quot;&gt;
&lt;b&gt;&lt;span style=&quot;font-family: &#39;Times New Roman&#39;, serif; font-size: 13.5pt;&quot;&gt;This is heading 4&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/b&gt;&lt;/div&gt;
&lt;div class=&quot;MsoNormal&quot;&gt;
&lt;b&gt;&lt;span style=&quot;font-family: &#39;Times New Roman&#39;, serif; font-size: 10pt;&quot;&gt;This is heading 5&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/b&gt;&lt;/div&gt;
&lt;div class=&quot;MsoNormal&quot;&gt;
&lt;b&gt;&lt;span style=&quot;font-family: &#39;Times New Roman&#39;, serif; font-size: 7.5pt;&quot;&gt;This is heading 6&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/b&gt;&lt;/div&gt;
&lt;div class=&quot;MsoNormal&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div class=&quot;MsoNormal&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;br /&gt;
&lt;div class=&quot;MsoNormal&quot;&gt;
This way we can display anything we want in our HTML
page. Hope this tutorial helps you.&lt;a href=&quot;https://www.blogger.com/null&quot; name=&quot;_GoBack&quot;&gt;&lt;/a&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/div&gt;
&lt;/div&gt;
</content><link rel='replies' type='application/atom+xml' href='http://tutorialterminal.blogspot.com/feeds/918072191741314015/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://tutorialterminal.blogspot.com/2014/03/html-basics.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/630550980296798375/posts/default/918072191741314015'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/630550980296798375/posts/default/918072191741314015'/><link rel='alternate' type='text/html' href='http://tutorialterminal.blogspot.com/2014/03/html-basics.html' title='HTML BASICS'/><author><name>InfoTuck</name><uri>http://www.blogger.com/profile/17016689498685423358</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='18' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEisgI3Ncil5ilMjxcK3ufYN7TfeFDOgQkOZ0TpqUUwJVOXMGEDnOYfkooN64nDBC41rYBSBo6l3mT6rtuADi6f8GQ8f0-evyYl2l7GHddwgpO-6Sc0xBBiDHiW5RUqG0M8/s1600/*'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhcHfhDgZoJk5Yrtfzt8dIXtAluL-c1aAU1FPAY5jHsGj6kWhX7S7W7zKF4F67Osyd2JbhVmuUbAfE28H3k4Vit-vJjWplqANFv9j46eSjPGeMwWhKUdYFyLyoppBGwtuNXCfLy80T1gUw/s72-c/images.jpg" height="72" width="72"/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-630550980296798375.post-8426574515087297251</id><published>2014-03-19T23:19:00.001-07:00</published><updated>2014-03-19T23:21:24.856-07:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="HTML Tutorials"/><title type='text'>Introduction to HTML</title><content type='html'>&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;
Before you begin, it&#39;s important that you know Windows or Unix. A working knowledge of Windows or Unix makes it much easier to learn HTML. You should be familiar with:&lt;br /&gt;
&lt;br /&gt;
You should be familiar with:&lt;br /&gt;
• Basic word processing using any text editor.&lt;br /&gt;
• How to create directories and files.&lt;br /&gt;
• How to navigate through different directories.&lt;br /&gt;
• Basic understanding on internet browsing using a browser like Internet Explorer or Firefox etc.&lt;br /&gt;
&lt;br /&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEit2McTDrXlUX8EBbNLmM0LCefvQg3NVjCL5aueswT0g1HT-FXyWcjF6RcrbJ3rC9qubEw4tS1K4a-RZAa_yCxQLT14rFAeCK1_2OcdobvqcM1jmJ9TXlj9aEnh9YH1QfP8sLPLOxWvo1s/s1600/HTML.jpg&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEit2McTDrXlUX8EBbNLmM0LCefvQg3NVjCL5aueswT0g1HT-FXyWcjF6RcrbJ3rC9qubEw4tS1K4a-RZAa_yCxQLT14rFAeCK1_2OcdobvqcM1jmJ9TXlj9aEnh9YH1QfP8sLPLOxWvo1s/s1600/HTML.jpg&quot; height=&quot;300&quot; width=&quot;550&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: center;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;br /&gt;
&lt;b&gt;Introducing HTML:&lt;/b&gt;&lt;br /&gt;
&lt;br /&gt;
HTML stands for Hypertext Markup Language, and it is the most widely used language to write Web Pages. As its name suggests, HTML is a markup language.&lt;br /&gt;
&lt;br /&gt;
• Hypertext refers to the way in which Web pages (HTML documents) are linked together. When you click a link in a Web page, you are using hypertext.&lt;br /&gt;
• Markup Language describes how HTML works. With a markup language, you simply &quot;mark up&quot; a text document with tags that tell a Web browser how to structure it to display.&lt;br /&gt;
&lt;br /&gt;
Originally, HTML was developed with the intent of defining the structure of documents like headings, paragraphs, lists, and so forth to facilitate the sharing of scientific information between researchers.&lt;br /&gt;
All you need to do to use HTML is to learn what type of markup to use to get the results you want.&lt;br /&gt;
&lt;ul type=&quot;disc&quot;&gt;
&lt;/ul&gt;
&lt;/div&gt;
</content><link rel='replies' type='application/atom+xml' href='http://tutorialterminal.blogspot.com/feeds/8426574515087297251/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://tutorialterminal.blogspot.com/2014/03/introduction-to-html.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/630550980296798375/posts/default/8426574515087297251'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/630550980296798375/posts/default/8426574515087297251'/><link rel='alternate' type='text/html' href='http://tutorialterminal.blogspot.com/2014/03/introduction-to-html.html' title='Introduction to HTML'/><author><name>InfoTuck</name><uri>http://www.blogger.com/profile/17016689498685423358</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='18' src='//blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEisgI3Ncil5ilMjxcK3ufYN7TfeFDOgQkOZ0TpqUUwJVOXMGEDnOYfkooN64nDBC41rYBSBo6l3mT6rtuADi6f8GQ8f0-evyYl2l7GHddwgpO-6Sc0xBBiDHiW5RUqG0M8/s1600/*'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEit2McTDrXlUX8EBbNLmM0LCefvQg3NVjCL5aueswT0g1HT-FXyWcjF6RcrbJ3rC9qubEw4tS1K4a-RZAa_yCxQLT14rFAeCK1_2OcdobvqcM1jmJ9TXlj9aEnh9YH1QfP8sLPLOxWvo1s/s72-c/HTML.jpg" height="72" width="72"/><thr:total>0</thr:total></entry></feed>