<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Learn Coding</title>
    <description>The latest articles on DEV Community by Learn Coding (@learncodingg).</description>
    <link>https://dev.to/learncodingg</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F978148%2F1b393e3b-cc0c-4d4d-a43d-5cbce4be3546.jpg</url>
      <title>DEV Community: Learn Coding</title>
      <link>https://dev.to/learncodingg</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/learncodingg"/>
    <language>en</language>
    <item>
      <title>Python Variables Scope Global Keyword |Local Variables</title>
      <dc:creator>Learn Coding</dc:creator>
      <pubDate>Fri, 02 Dec 2022 04:06:22 +0000</pubDate>
      <link>https://dev.to/learncodingg/python-variables-scope-global-keyword-local-variables-1d38</link>
      <guid>https://dev.to/learncodingg/python-variables-scope-global-keyword-local-variables-1d38</guid>
      <description>&lt;p&gt;What is Variable in Python and How to Create Variables in Python&lt;br&gt;
Python in Variable: It is a name of storage space which is used to store data. Its value may be changed. It always contains the last value stored to it. There is no need to declare a variable in python. A variable is created by assigning a value to it.&lt;/p&gt;

&lt;p&gt;Variable is a name which is used to refer to a memory location. Variable also known as identifier and used to hold value.&lt;/p&gt;

&lt;p&gt;In Python, we don't need to specify the type of variable because Python is a type infer language and smart enough to get variable type. &lt;/p&gt;

&lt;p&gt;Variable names can be a group of both letters and digits, but they have to begin with a letter or an underscore. It is recommended to use lowercase letters for variable name.  and x both are two different variables. &lt;br&gt;
&lt;a href="https://www.learncodingnivi.com/2022/11/python-variables-scope.html"&gt;Read More&lt;/a&gt;&lt;/p&gt;

</description>
      <category>python</category>
      <category>programming</category>
    </item>
    <item>
      <title>PHP Variables Learn| Types Variables| Declare Variables</title>
      <dc:creator>Learn Coding</dc:creator>
      <pubDate>Fri, 02 Dec 2022 04:04:33 +0000</pubDate>
      <link>https://dev.to/learncodingg/php-variables-learn-types-variables-declare-variables-2f10</link>
      <guid>https://dev.to/learncodingg/php-variables-learn-types-variables-declare-variables-2f10</guid>
      <description>&lt;p&gt;How to Create Php Variables| Php For Beginners with Examples&lt;br&gt;
Php Variables: Variables is a name of storage space which is used to store data. Its value may be changed. It always contains the last value stored to it. Variables is a container which holds the value. Variable in PHP starts with dollar($) sign. In PHP, a variable is declared using a $ sign followed by the variable name. Here, some important points to know about variables. &lt;/p&gt;

&lt;p&gt;As PHP is a loosely typed language, so we do not need to declare the data types of the variables. &lt;br&gt;
It automatically analyzes the values and makes conversions to its correct datatype.&lt;br&gt;
After declaring a variable, it can be reused throughout the code.&lt;br&gt;
Assignment Operator (=) is used to assign the value to a variable. &lt;br&gt;
What is declared syntax?&lt;/p&gt;

&lt;p&gt;$variablename=value;&lt;/p&gt;

&lt;p&gt;What are variables in PHP, explain with example?&lt;/p&gt;

&lt;p&gt;&amp;lt;?php&lt;/p&gt;

&lt;p&gt;$x=100;&lt;/p&gt;

&lt;p&gt;$x=50;&lt;/p&gt;

&lt;p&gt;$x=250;&lt;/p&gt;

&lt;p&gt;echo "The value of x is:".$x;&lt;/p&gt;

&lt;p&gt;?&amp;gt;&lt;/p&gt;

&lt;p&gt;*******&lt;strong&gt;&lt;em&gt;OUTPUT&lt;/em&gt;&lt;/strong&gt;*******&lt;/p&gt;

&lt;p&gt;The value of x is:250&lt;/p&gt;

&lt;p&gt;What is string in PHP with example?&lt;/p&gt;

&lt;p&gt;&amp;lt;?php&lt;/p&gt;

&lt;p&gt;$str="Learn Coding";&lt;/p&gt;

&lt;p&gt;echo "I like $str";&lt;/p&gt;

&lt;p&gt;?&amp;gt;&lt;/p&gt;

&lt;p&gt;*******&lt;strong&gt;&lt;em&gt;OUTPUT&lt;/em&gt;&lt;/strong&gt;*******&lt;/p&gt;

&lt;p&gt;I like Learn Coding&lt;/p&gt;

&lt;p&gt;Can you concatenate strings in PHP?&lt;/p&gt;

&lt;p&gt;&amp;lt;?php&lt;/p&gt;

&lt;p&gt;$str="Learn Coding";&lt;/p&gt;

&lt;p&gt;echo "I like ".$str;&lt;/p&gt;

&lt;p&gt;?&amp;gt;&lt;/p&gt;

&lt;p&gt;*******&lt;strong&gt;&lt;em&gt;OUTPUT&lt;/em&gt;&lt;/strong&gt;*******&lt;/p&gt;

&lt;p&gt;I like Learn Coding&lt;/p&gt;

&lt;p&gt;PHP Variables Learn| Types Variables| Declare Variables&lt;/p&gt;

&lt;p&gt;Table of Contents&lt;br&gt;
What are the rules to declare variable in PHP?&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;&lt;p&gt;It must start with the dollar sign.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;There is no need of data type (int, float, char) to define a variable.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Variables can, but do not need, to be declared before assignment.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;After the dollar sign, the first letter of a variable should be alphabet or underscore(_).&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;After the dollar sign, the first letter of a variable should not be a digit.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;After the first character, it may be a combination of alphabets and digits.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Blank spaces are not allowed in variable name.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;A variable must start with a dollar ($) sign, followed by the variable name.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;It can only contain alphanumeric character and underscore (A-z, 0-9, _).&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;A variable name must start with a letter or underscore (_) character.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;A PHP variable name cannot contain spaces.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;One thing to be kept in mind that the variable name cannot start with a number or special symbols.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;PHP variables are case-sensitive, so $name and $NAME both are treated as different variable.&lt;br&gt;
&lt;a href="https://www.learncodingnivi.com/2022/12/php-variables-learn.html" rel="noopener noreferrer"&gt;Read More&lt;/a&gt;&lt;/p&gt;&lt;/li&gt;
&lt;/ol&gt;

</description>
      <category>javascript</category>
      <category>react</category>
    </item>
    <item>
      <title>C++ Introduction| History| Features| in Details</title>
      <dc:creator>Learn Coding</dc:creator>
      <pubDate>Thu, 24 Nov 2022 04:03:35 +0000</pubDate>
      <link>https://dev.to/learncodingg/c-introduction-history-features-in-details-2ajo</link>
      <guid>https://dev.to/learncodingg/c-introduction-history-features-in-details-2ajo</guid>
      <description>&lt;h1&gt;&lt;span&gt;What is the Introduction of C++?&lt;/span&gt;&lt;/h1&gt;
&lt;p&gt;&lt;span&gt;&lt;b&gt;Introduction to C++:&lt;/b&gt;  C++ language is a basic high level and object-oriented programming language. It is supports object-oriented programming language. It is developed by Bjarne Stroustrup. It is Developed at Bell Laboratory (U.S.A.). It was developed in 1979 basically it was developed to make writing good programs.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;C++ programming language is a cross-platform that can be used to create high performance any C++ application.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;C++ language is a gives programmer a high level control over system resources and memory management in our C++ program. &lt;/span&gt;&lt;/p&gt;

&lt;a href="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEh4XfT3WcwQ4WljlZ9WTKXGTaEq0rCn2fBhgfWG_INQUKBERIVkGiKwLE6I_4vn3DH-lzvlxk43maNPWCvvyWfLvzpuN8iDJNyr2sF1AXwG8Uw-cWa8oW2-pSRsJtZO03RiyTK7uHWNBFWrkEApxUvS5LgHIAbxKdIA44Iy_gDzf2Jf_9vPfTZmvbL2VA/s1200/introduction-of-cplus-plus.jpg"&gt;&lt;img alt="C++ Introduction| History| Features| in Details" src="https://res.cloudinary.com/practicaldev/image/fetch/s--1_bgmV1y--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEh4XfT3WcwQ4WljlZ9WTKXGTaEq0rCn2fBhgfWG_INQUKBERIVkGiKwLE6I_4vn3DH-lzvlxk43maNPWCvvyWfLvzpuN8iDJNyr2sF1AXwG8Uw-cWa8oW2-pSRsJtZO03RiyTK7uHWNBFWrkEApxUvS5LgHIAbxKdIA44Iy_gDzf2Jf_9vPfTZmvbL2VA/w640-h342/introduction-of-cplus-plus.jpg" title="C++ Introduction| History| Features| in Details" width="" height=""&gt;&lt;/a&gt;&lt;span&gt;&lt;span&gt;&lt;br&gt;&lt;/span&gt;&lt;span&gt;&lt;br&gt;&lt;/span&gt;  &lt;ol id="avsTOC"&gt;&lt;/ol&gt; &lt;br&gt;&lt;/span&gt;
&lt;h2&gt;&lt;span&gt;A Brief History of C++&lt;/span&gt;&lt;/h2&gt;
&lt;p&gt;&lt;span&gt;The Purpose of a programming language is too easy. C++ is not a new language, but one that is popularly programming language. As of this writing, the newest version of C++ is called C++22. It was ratified by the International Organization for Standardization(&lt;b&gt;ISO&lt;/b&gt;) and published n December 2022.&lt;/span&gt;&lt;/p&gt;
&lt;h2&gt;&lt;span&gt;C++ Connection of C Language&lt;/span&gt;&lt;/h2&gt;
&lt;span&gt;C++ programming language is developed by Bjarne Stroustrup at Bell Labs in 1979, C++&lt;/span&gt;&lt;span&gt;is successor to C language. C++ was designed to be an object-oriented programming language that implements concepts such as inheritance, Abstractions, Polymorphism and Encapsulation.&lt;/span&gt;&lt;span&gt;C++ features classes that are used to contain member data and member function. C++ is a popular compiler to have continued to support &lt;a href="https://www.learncodingnivi.com/2022/11/introduction-c-language.html"&gt;&lt;b&gt;C Programming Language&lt;/b&gt;&lt;/a&gt;.&lt;/span&gt;&lt;span&gt;&lt;br&gt;&lt;/span&gt;&lt;span&gt;&lt;b&gt;Note: &lt;/b&gt;Knowledge of C programming Language is not a learning of C++ language. if your goal is to learn an object-oriented programming language like C++ then you can directly.&lt;/span&gt;&lt;span&gt;C++ you can do not need to learn a procedural languages like C Language.&lt;/span&gt;&lt;h2&gt;&lt;span&gt;What are the main features of C++?&lt;/span&gt;&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;&lt;span&gt;Simple&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span&gt;Powerful&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span&gt;Portable&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span&gt;Machine Independent&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span&gt;Structure Oriented &lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span&gt;High Level Programming language&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span&gt;High Speed&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span&gt;High Efficiency&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span&gt;Flexible&lt;/span&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;h2&gt;&lt;b&gt;&lt;span&gt;What C++ is used for?&lt;/span&gt;&lt;/b&gt;&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;&lt;span&gt;Game Development&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span&gt;Operating Systems&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span&gt;Compilers&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span&gt;Editors&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span&gt;Database Systems&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span&gt;Networks Drivers&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span&gt;Graphics Packages&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span&gt;Interpreters&lt;/span&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;What is oops in C++?&lt;/h2&gt;
&lt;span&gt;C++ Programming language is a support object-oriented programming language like &lt;/span&gt;&lt;span&gt;&lt;b&gt;Abstraction, Inheritance, Encapsulation and Polymorphism. &lt;/b&gt;C++ support many features friend function, static function, and Exception and more features support in C++ programming language.&lt;/span&gt;&lt;h2&gt;&lt;span&gt;What is new in C++ 2020&lt;/span&gt;&lt;/h2&gt;
&lt;span&gt;C++ language is standard to have resulted in a language that is simple, easy to used for programming without compromising on the ability to write high performance applications.&lt;/span&gt;&lt;span&gt;C++ language that is still features that are expected in the next version in 2023.&lt;/span&gt;&lt;span&gt;&lt;br&gt;&lt;/span&gt;&lt;h2&gt;&lt;span&gt;Why Use C++ Programming Language&lt;/span&gt;&lt;/h2&gt;
&lt;span&gt;C++ language is the one of the world's most popular programming language. C++ can be found in today's operating systems, C++ language use Graphical User Interfaces and Embedded system.&lt;/span&gt;&lt;span&gt;C++ is an object-oriented programming language.  Which gives a clear structure to programs and allows code to be reused.&lt;/span&gt;&lt;h2&gt;&lt;span&gt;Advantages of C++ Programming Language&lt;/span&gt;&lt;/h2&gt;
&lt;span&gt;C++ language is an intermediate-level programming language. It is versatile and can be used for high-level programming language. C++ can also be used for low-level programming of libraries that work close to the hardware, such as device drivers.&lt;/span&gt;&lt;span&gt;C++ is the language of choice for artificial intelligence and machine learning compilers and interpreters of other programming languages.&lt;/span&gt;&lt;h2&gt;&lt;span&gt;&lt;span&gt;&lt;br&gt;&lt;/span&gt;&lt;span&gt;Difference between C Language and C++ Language&lt;/span&gt;&lt;/span&gt;&lt;/h2&gt;
&lt;span&gt;C++ was developed as an extension of C and both languages have almost the same syntax.&lt;/span&gt;&lt;span&gt;The main difference between C Language and C++ Language is that C++ Support classes and objects.&lt;/span&gt;&lt;span&gt;But C language not support object-oriented programming language.&lt;/span&gt;&lt;br&gt;&lt;h2&gt;&lt;span&gt;C++ Language Install IDE &lt;/span&gt;&lt;/h2&gt;
&lt;span&gt;An IDE (Integrated Development Environment) is used to edit C++ program and compile the code.&lt;/span&gt;&lt;span&gt;&lt;b&gt;You can Download C++ Software: &lt;/b&gt;&lt;a href="https://sourceforge.net/projects/orwelldevcpp/files/latest/download"&gt;&lt;b&gt;&lt;span&gt;Click Here&lt;/span&gt;&lt;/b&gt;&lt;/a&gt;&lt;/span&gt;&lt;br&gt;&lt;h2&gt;&lt;span&gt;Syntax of C++ Programming Language&lt;/span&gt;&lt;/h2&gt;
&lt;p&gt;&lt;span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td&gt;
&lt;p&gt;&lt;span&gt;&lt;span&gt;&lt;b&gt;&lt;span&gt;#include&amp;lt;iostream.h&amp;gt;&lt;/span&gt;&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p&gt;&lt;span&gt;&lt;span&gt;&lt;b&gt;&lt;span&gt;#include&amp;lt;conio.h&amp;gt;&lt;/span&gt;&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p&gt;&lt;span&gt;&lt;span&gt;&lt;b&gt;&lt;span&gt;void main()&lt;/span&gt;&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p&gt;&lt;span&gt;&lt;span&gt;&lt;b&gt;&lt;span&gt;{&lt;/span&gt;&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p&gt;&lt;span&gt;&lt;span&gt;&lt;b&gt;&lt;span&gt;clrscr();&lt;/span&gt;&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p&gt;&lt;span&gt;&lt;span&gt;&lt;b&gt;&lt;span&gt;cout&amp;lt;&amp;lt;"Hello World";&lt;/span&gt;&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p&gt;&lt;span&gt;&lt;span&gt;&lt;b&gt;&lt;span&gt;getch();&lt;/span&gt;&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p&gt;&lt;span&gt;&lt;span&gt;&lt;b&gt;&lt;span&gt;}&lt;/span&gt;&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p&gt;&lt;span&gt;&lt;br&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p&gt;&lt;span&gt;&lt;span&gt;&lt;b&gt;&lt;span&gt;************&lt;strong&gt;&lt;em&gt;OUTPUT&lt;/em&gt;&lt;/strong&gt;**********&lt;strong&gt;&lt;em&gt;&lt;/em&gt;&lt;/strong&gt;&lt;/span&gt;&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p&gt;&lt;span&gt;&lt;span&gt;&lt;b&gt;&lt;span&gt;Hello World&lt;/span&gt;&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;


&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/div&gt;
&lt;br&gt;&lt;h2&gt;&lt;span&gt;Description of First Program&lt;/span&gt;&lt;/h2&gt;
&lt;p&gt;&lt;span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td&gt;

&lt;p&gt;&lt;span&gt;&lt;span&gt;&lt;span&gt;&lt;span&gt;&lt;span&gt;&lt;b&gt;#:&lt;/b&gt;&lt;/span&gt;&lt;span&gt; &lt;/span&gt;It is called the preprocessor. It is included the library of C++ into the program before the execution of any C++ program.&lt;br&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p&gt;&lt;span&gt;&lt;span&gt;&lt;span&gt;&lt;span&gt;&lt;br&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p&gt;&lt;span&gt;&lt;b&gt;include: &lt;/b&gt;&lt;span&gt;C++ include the header file into the every c++ program.&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p&gt;&lt;span&gt;&lt;span&gt;&lt;br&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p&gt;&lt;span&gt;&lt;b&gt;iostream: &lt;/b&gt;&lt;span&gt;C++ is a standard input/output stream function.  It is a collection of predefined function and methods. It is also called library of C++.&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p&gt;&lt;span&gt;&lt;span&gt;&lt;br&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p&gt;&lt;span&gt;&lt;b&gt;iostream: &lt;/b&gt;&lt;span&gt;Conio is a function in C++ language. It stands for console input/output. It is used to show the output on console window.&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p&gt;&lt;span&gt;&lt;span&gt;&lt;br&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p&gt;&lt;span&gt;&lt;b&gt;void:&lt;/b&gt;&lt;span&gt; void is a keyword in C++ language. It indicates that no one value is being returned by the function. If we can use any other keyword. It is a return keyword.&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p&gt;&lt;span&gt;&lt;span&gt;&lt;br&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p&gt;&lt;span&gt;&lt;b&gt;main: &lt;/b&gt;&lt;span&gt;It is a main function in C++ language. It is the function which is called the entry point of any program, the execution of any program starts from the main function.&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p&gt;&lt;span&gt;&lt;span&gt;&lt;br&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p&gt;&lt;span&gt;&lt;span&gt;&lt;b&gt;clrscr:&lt;/b&gt; c&lt;/span&gt;&lt;span&gt;lrscr function is a stands for clear screen. It is a predefine function&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p&gt;&lt;span&gt;&lt;span&gt;which is used to clear the output screen. It is defined in the conio.h header file. &lt;/span&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p&gt;&lt;span&gt;&lt;span&gt;&lt;br&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p&gt;&lt;span&gt;&lt;b&gt;cout: &lt;/b&gt;&lt;span&gt;cout function is the most important function in C++ language. It is a keyword which is used to print data or information on to the output screen.&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p&gt;&lt;span&gt;&lt;span&gt;&lt;br&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p&gt;&lt;span&gt;&lt;b&gt;getch: &lt;/b&gt;&lt;span&gt;getch function is a predefined function in C++. Which is used to hold the output screen.&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p&gt;&lt;span&gt;&lt;br&gt;&lt;/span&gt;&lt;/p&gt;


&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/div&gt;
&lt;br&gt;&lt;h2&gt;&lt;span&gt;FAQ C++ Language&lt;/span&gt;&lt;/h2&gt;
&lt;span&gt;&lt;b&gt;Q.1&lt;/b&gt; &lt;b&gt;When was C++ language introduced?&lt;/b&gt;&lt;/span&gt;&lt;span&gt;&lt;b&gt;Ans: &lt;/b&gt;C++ programming language is the best programming language. C++ language support is object-oriented programming language. C++ language, developed &lt;b&gt;Bjarne &lt;/b&gt;&lt;b&gt;Stroustrup &lt;/b&gt;in&lt;b&gt; 1979.&lt;/b&gt;&lt;/span&gt;&lt;span&gt;&lt;br&gt;&lt;/span&gt;&lt;span&gt;&lt;b&gt;Q.2&lt;/b&gt; &lt;b&gt;C++ Program Examples&lt;/b&gt;&lt;/span&gt;&lt;span&gt;&lt;b&gt;Ans:&lt;/b&gt;&lt;/span&gt;&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td&gt;

&lt;p&gt;&lt;span&gt;&lt;span&gt;&lt;b&gt;&lt;span&gt;#include&amp;lt;iostream.h&amp;gt;&lt;/span&gt;&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p&gt;&lt;span&gt;&lt;span&gt;&lt;b&gt;&lt;span&gt;#include&amp;lt;conio.h&amp;gt;&lt;/span&gt;&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p&gt;&lt;span&gt;&lt;span&gt;&lt;b&gt;&lt;span&gt;void main()&lt;/span&gt;&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p&gt;&lt;span&gt;&lt;span&gt;&lt;b&gt;&lt;span&gt;{&lt;/span&gt;&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p&gt;&lt;span&gt;&lt;span&gt;&lt;b&gt;&lt;span&gt;clrscr();&lt;/span&gt;&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p&gt;&lt;span&gt;&lt;span&gt;&lt;b&gt;&lt;span&gt;cout&amp;lt;&amp;lt;"Welcome To Learn Coding";&lt;/span&gt;&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p&gt;&lt;span&gt;&lt;span&gt;&lt;b&gt;&lt;span&gt;getch();&lt;/span&gt;&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p&gt;&lt;span&gt;&lt;span&gt;&lt;b&gt;&lt;span&gt;}&lt;/span&gt;&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p&gt;&lt;span&gt;&lt;br&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p&gt;&lt;span&gt;&lt;span&gt;&lt;b&gt;&lt;span&gt;*********&lt;strong&gt;&lt;em&gt;OUTPUT&lt;/em&gt;&lt;/strong&gt;*************&lt;/span&gt;&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p&gt;&lt;span&gt;&lt;b&gt;Welcome To Learn Coding&lt;/b&gt;&lt;/span&gt;&lt;/p&gt;


&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/div&gt;
&lt;span&gt;&lt;br&gt;&lt;/span&gt;&lt;b&gt;&lt;span&gt;&lt;br&gt;&lt;/span&gt;&lt;/b&gt;&lt;span&gt;&lt;b&gt;Q3. &lt;/b&gt;&lt;b&gt;What is C++ and its History?&lt;/b&gt;&lt;/span&gt;&lt;span&gt;&lt;b&gt;Ans: &lt;/b&gt;C++ Language is developed&lt;b&gt; &lt;/b&gt; was ratified by the International Organization for Standardization(&lt;b&gt;ISO&lt;/b&gt;) and published n December 2022.&lt;/span&gt;&lt;span&gt;&lt;br&gt;&lt;/span&gt;&lt;span&gt;&lt;b&gt;Q4. &lt;/b&gt;&lt;b&gt;Who is the founder of Dev C++?&lt;/b&gt;&lt;/span&gt;&lt;span&gt;&lt;b&gt;Ans: C++ Dev, developed by&lt;/b&gt; &lt;b&gt;Colin Laplace&lt;/b&gt; and first released in 1998. It is written in Delphi. It is bundled with, and uses, the MinGW or TDM-GCC 64bit port of the GCC as its compiler. Dev-C++ can also be used in combination with Corwin or any other GCC-based compiler.&lt;/span&gt;&lt;span&gt;&lt;br&gt;&lt;/span&gt;&lt;span&gt;&lt;b&gt;Q5. &lt;/b&gt;&lt;b&gt;Who is the father of Oops?&lt;/b&gt;&lt;/span&gt;&lt;span&gt;&lt;b&gt;Ans: &lt;/b&gt;C++ language Ops developed in Object-Oriented programming &lt;b&gt; Alan Kay,&lt;/b&gt; considered by some to be the father of object-oriented programming, identified the following characteristics as fundamental to OOP Kay 1993.&lt;/span&gt;&lt;span&gt;&lt;br&gt;&lt;/span&gt;&lt;h2&gt;&lt;b&gt;&lt;span&gt;C++ Language Introduction Conclusion&lt;/span&gt;&lt;/b&gt;&lt;/h2&gt;
&lt;span&gt;Hello C++ Programmer, you can any problem in C++ program you can contact me.&lt;/span&gt;&lt;span&gt;It is introduction of C++ language any suggestion.&lt;/span&gt;

&lt;p&gt;avsTOC();&lt;/p&gt;

&lt;p&gt;&lt;a href="https://www.learncodingnivi.com/2022/11/cplusplus-introduction-history.html"&gt;Read More&lt;/a&gt;&lt;/p&gt;

</description>
    </item>
    <item>
      <title>Introduction C Language |Basic|History|Syntax|</title>
      <dc:creator>Learn Coding</dc:creator>
      <pubDate>Thu, 24 Nov 2022 03:58:59 +0000</pubDate>
      <link>https://dev.to/learncodingg/introduction-c-language-basichistorysyntax-4h0n</link>
      <guid>https://dev.to/learncodingg/introduction-c-language-basichistorysyntax-4h0n</guid>
      <description>&lt;p&gt;`&lt;/p&gt;
&lt;h1&gt;&lt;strong&gt;&lt;span&gt;What is introduction C Programming Language?&lt;/span&gt;&lt;/strong&gt;&lt;/h1&gt;
&lt;span&gt;&lt;b&gt;Introduction, to C Language:&lt;/b&gt; &lt;b&gt;C&lt;/b&gt; language is a very powerful and general-purpose programming language. We can use C to develop &lt;b&gt;software &lt;/b&gt;such as &lt;b&gt;databases&lt;/b&gt;, &lt;b&gt;operating systems&lt;/b&gt;, &lt;b&gt;compilers&lt;/b&gt;, and many more software developed. C programming language is excellent to learn for beginners in programming. C Language is a mother language programming language in every computer programming language.&lt;b&gt;&lt;br&gt;&lt;/b&gt;&lt;br&gt;C Language that is extremely popular, simple, and flexible to use. It is a structured programming language that is machine-independent and extensively used to write various applications, Operating Systems like Windows, and many other complex programs like Oracle database, Git, Python interpreter.&lt;br&gt;&lt;br&gt;&lt;b&gt;introduction c language&lt;/b&gt; ‘C’ language is a Mother’s programming language. One can say, C is a base for the other programming. If you know ‘C,’ you can easily get the knowledge of the other programming languages that uses the concept of ‘C’&lt;br&gt;&lt;br&gt;It is essential to have a background in computer memory mechanisms because it is an important aspect when dealing with the C programming language.&lt;/span&gt;&lt;span&gt;&lt;br&gt;&lt;/span&gt; &lt;span&gt;Table of Contents &lt;/span&gt;&lt;ol id="avsTOC"&gt;&lt;/ol&gt; &lt;span&gt;&lt;br&gt;&lt;/span&gt;&lt;a href="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiEFYxGym3dv5OlUr9GK6rAxuQ8pJC48FEB5Mhv37vLGjSaWjR275C6WCZkv76rX-8JwcfHs9cNpiaqFufTkWpZx_8NXZZcr0V4XJZ7OI15fNmDglgU73Ot-Ubalf78Bo4bf9PbpJWsRbRqTEccxQNV_FkExro4OpZHBdWD2ql_ML-7Ca55G6G5J4OFTQ/s1200/introduction-c-language.jpg"&gt;&lt;span&gt;&lt;img alt="Introduction C Language |Basic|History|Syntax|" src="https://res.cloudinary.com/practicaldev/image/fetch/s--5Fp9Kopm--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiEFYxGym3dv5OlUr9GK6rAxuQ8pJC48FEB5Mhv37vLGjSaWjR275C6WCZkv76rX-8JwcfHs9cNpiaqFufTkWpZx_8NXZZcr0V4XJZ7OI15fNmDglgU73Ot-Ubalf78Bo4bf9PbpJWsRbRqTEccxQNV_FkExro4OpZHBdWD2ql_ML-7Ca55G6G5J4OFTQ/w640-h342/introduction-c-language.jpg" title="Introduction C Language |Basic|History|Syntax|" width="" height=""&gt;&lt;/span&gt;&lt;/a&gt;&lt;span&gt;&lt;br&gt;&lt;/span&gt;&lt;h2&gt;&lt;span&gt;&lt;b&gt;History of C Programming Language&lt;/b&gt;&lt;/span&gt;&lt;/h2&gt;
&lt;span&gt;The base or father of programming languages is ‘ALGOL.’ It was first introduced in 1960. ‘ALGOL’ was used on a large basis in European countries. ‘ALGOL’ introduced the concept of structured programming to the developer community. In 1967, a new computer programming language was announced called as ‘BCPL’ which stands for Basic Combined Programming Language.&lt;/span&gt;&lt;span&gt; &lt;/span&gt;&lt;span&gt;BCPL was designed and developed by Martin Richards, especially for writing system software. This was the era of programming languages. Just after three years, in 1970 a new programming language called ‘B’ was introduced by Ken Thompson that contained multiple features of ‘BCPL.’ This programming language was created using UNIX operating system at AT&amp;amp;T and Bell Laboratories. Both the ‘BCPL’ and ‘B’ were system programming languages.&lt;/span&gt;&lt;span&gt;&lt;br&gt;&lt;/span&gt;&lt;h2&gt;&lt;b&gt;&lt;span&gt;About C Programming Language&lt;/span&gt;&lt;/b&gt;&lt;/h2&gt;
&lt;span&gt;C language is imperative, procedural, and general-purpose in nature, developed by &lt;b&gt;Dennis M. Ritchie&lt;/b&gt; in &lt;b&gt;1972&lt;/b&gt; at the Bell Telephone for developing the UNIX OS. As of now, the C language is one of the most widely used computer languages along with Java, which is mostly used among modern programmers.&lt;/span&gt;&lt;h2&gt;&lt;b&gt;&lt;span&gt;Introduction to C Programming Language&lt;/span&gt;&lt;/b&gt;&lt;/h2&gt;
&lt;span&gt;C is a programming language developed in at &amp;amp; T’s Bell Laboratories of the USA in 1972. It was designed and written by a man named Dennis Ritchie. C is a computer programming language. That means that you can use C to create lists of instructions for a computer to follow. &lt;/span&gt;&lt;span&gt;&lt;br&gt;&lt;/span&gt;&lt;span&gt;C is one of thousands of programming languages currently in use. C has been around for several decades and has won widespread acceptance because it gives programmers maximum control and efficiency. C is an easy language to learn. It is a bit more cryptic in its style than some other languages, but you get beyond that fairly quickly. &lt;/span&gt;&lt;span&gt;&lt;br&gt;&lt;/span&gt;&lt;span&gt;Possibly why C seems so popular is because it is reliable, simple and easy to use. Moreover, in an industry where newer languages, tools and technologies emerge and vanish day in and day out, a language that has survived for more than 3 decades has to be wonderful.&lt;/span&gt;&lt;span&gt;&lt;br&gt;&lt;/span&gt;&lt;h2&gt;&lt;b&gt;&lt;span&gt;How to Learn C Programming Language&lt;/span&gt;&lt;/b&gt;&lt;/h2&gt;
&lt;span&gt;&lt;span&gt;Communicating with a computer involves speaking the language the computer understands, which immediately rules out English as the language of communication with a computer. However, there is a close analogy between learning English language and learning C language.&lt;/span&gt;&lt;span&gt; C programming language, you can read first &lt;/span&gt;&lt;span&gt;Introduction c language.&lt;/span&gt;&lt;/span&gt;&lt;span&gt;&lt;br&gt;&lt;/span&gt;&lt;span&gt;The classical method of learning English is to first learn the alphabets used in the language, then learn to combine these alphabets to form words, which in turn are combined to form sentences and sentences are combined to form paragraphs. &lt;/span&gt;&lt;span&gt;&lt;br&gt;&lt;/span&gt;&lt;span&gt;Learning C is similar and easier. Instead of straight-away learning how to write programs, we must first know what alphabets, numbers and special symbols are used in C, then how using them constants, variables and keywords are constructed, and finally how are these combined to form an instruction. A group of instructions would be combined later on to form a program.&lt;/span&gt;&lt;span&gt;&lt;br&gt;&lt;/span&gt;&lt;h2&gt;&lt;b&gt;&lt;span&gt;Why Learn C Programming Language?&lt;/span&gt;&lt;/b&gt;&lt;/h2&gt;
&lt;span&gt;This language is a must for those working professionals as well as students who want to become established software engineers. Here are some of the key reasons why you must learn the C language for the domain of software development:&lt;/span&gt;&lt;span&gt;&lt;br&gt;&lt;/span&gt;&lt;span&gt;&lt;b&gt;1.&lt;/b&gt; This language helps users comprehend a computer’s internal architecture. It assists you in knowing how a computer would store information within and retrieve it.&lt;/span&gt;&lt;span&gt;&lt;br&gt;&lt;b&gt;2. &lt;/b&gt;Learning other programming languages becomes easier after learning C, such as Python, Java, etc.&lt;/span&gt;&lt;span&gt;&lt;br&gt;&lt;b&gt;3. &lt;/b&gt;A programmer who is well-versed with the C language gets opportunities to work on various open-source projects. For instance, some of the very popular projects (open-source) have been written using the C programming language, such as Python interpreter, Linux kernel, SQLite database.&lt;/span&gt;&lt;span&gt;&lt;br&gt;&lt;/span&gt;&lt;h3&gt;&lt;b&gt;&lt;span&gt;Difference between C and C++&lt;/span&gt;&lt;/b&gt;&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;&lt;span&gt;C++ was developed as an extension of C, and both languages have almost the same syntax.&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span&gt;The main difference between C and C++ is that C++ support classes and objects, while C does not&lt;/span&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;h2&gt;&lt;b&gt;&lt;span&gt;Benefits of C Programming Language&lt;/span&gt;&lt;/b&gt;&lt;/h2&gt;
&lt;span&gt;Here are a few reasons why programmers choose the C language for running a program: It is a structured language.&lt;br&gt;&lt;/span&gt;&lt;ul&gt;
&lt;li&gt;&lt;span&gt;The C language is very easy to understand and learn.&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span&gt;The C language generates very efficient programs.&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span&gt;It helps you handle various low-level activities.&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span&gt;The compilation of C programs can occur on various computer programs.&lt;/span&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;h2&gt;&lt;b&gt;&lt;span&gt;Applications of a C Language&lt;/span&gt;&lt;/b&gt;&lt;/h2&gt;
&lt;span&gt;This language was initially utilized for the development of systems- particularly those programs that would make up an OS (Operating System). The C programming language was adopted in the form of a language for system development, since it generates codes that run as fast as those codes that exist in the assembly language.&lt;/span&gt;&lt;span&gt; &lt;/span&gt;&lt;b&gt;&lt;span&gt;Here are a few examples of how we can use the C language in development:  &lt;/span&gt;&lt;/b&gt;&lt;ul&gt;
&lt;li&gt;&lt;span&gt;Operating Systems&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span&gt;Text Editors&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span&gt;Assemblers&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span&gt;Network Drivers&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span&gt;Print Spoolers&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span&gt;Modern Programs&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span&gt;Language Interpreters&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span&gt;Databases&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span&gt;Utilities&lt;/span&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;h2&gt;&lt;b&gt;&lt;span&gt;Features of a C Language&lt;/span&gt;&lt;/b&gt;&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;&lt;span&gt;Simple&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span&gt;Easy To Used&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span&gt;Powerful&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span&gt;Portable&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span&gt;High Efficiency&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span&gt;Mid-Level Programming Language&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span&gt;Machine Independent&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span&gt;Structure Oriented&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span&gt;Flexible.&lt;/span&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;h2&gt;&lt;b&gt;&lt;span&gt;Uses of the C Programming Language&lt;/span&gt;&lt;/b&gt;&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;&lt;span&gt;&lt;b&gt;Procedural Language:&lt;/b&gt; The execution of the instructions present in a C program happens step by step.&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span&gt;&lt;b&gt;Speed:&lt;/b&gt; The C language is much faster as compared to a majority of the programming languages, such as Python, Java, and many more.&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span&gt;&lt;b&gt;Portable:&lt;/b&gt; A C program can be moved from any given platform to another one, and we can also run it on that platform without any of the charges.&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span&gt;General Purposes: We can use the C programming language for developing operating systems, databases, embedded systems, etc.&lt;/span&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;h2&gt;&lt;span&gt;&lt;b&gt;C Language Program File&lt;/b&gt;&lt;/span&gt;&lt;/h2&gt;
&lt;span&gt;All the C programs are written into text files with extension ".c" for example hello.c. You can use "vi" editor to write your C program into a file.&lt;br&gt;&lt;br&gt;This tutorial assumes that you know how to edit a text file and how to write programming instructions inside a program file.&lt;/span&gt;&lt;span&gt;&lt;br&gt;&lt;/span&gt;&lt;h3&gt;&lt;span&gt;&lt;b&gt;C Language Compilers&lt;/b&gt;&lt;/span&gt;&lt;/h3&gt;
&lt;span&gt;When you write any program in C language, then to run that program you need to compile that program using a C Compiler which converts your program into a language understandable by a computer. This is called machine language (i.e. binary format). So before proceeding, make sure you have C Compiler available at your computer. It comes along with all flavors of Unix and Linux.&lt;br&gt;&lt;br&gt;If you are working over Unix or Linux, then you can type GCC -v or cc -v and check the result. You can ask your system administrator, or you can take help from anyone to identify an available C Compiler at your computer.&lt;/span&gt;&lt;span&gt;&lt;br&gt;&lt;/span&gt;&lt;h3&gt;&lt;span&gt;C Program File Extension&lt;/span&gt;&lt;/h3&gt;
&lt;span&gt;&lt;b&gt;introduction C language: &lt;/b&gt;All the C programs area units written into text files with extension ".c" for example learncoding. c. you'll be able to use the "notepad" editor to write down your program into a file.&lt;br&gt;&lt;br&gt;C program assumes that you just edit a computer file and write down programming instructions within a program file.&lt;/span&gt;&lt;span&gt;&lt;br&gt;&lt;/span&gt;&lt;h2&gt;&lt;b&gt;&lt;span&gt;Summary of C Programming Language&lt;/span&gt;&lt;/b&gt;&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;&lt;span&gt;‘C’ Programming language was developed by Dennis Ritchie in 1972.&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span&gt;It is a robust language.&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span&gt;It is a low programming level language close to machine language&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span&gt;It is widely used in the software development field.&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span&gt;It is a procedure and structure oriented language.&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span&gt;It has the full support of various operating systems and hardware platforms.&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span&gt;Many compilers are available for executing programs written in ‘C’.&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span&gt;A compiler compiles the source file and generates an object file.&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span&gt;A linker links all the object files together and creates one executable file.&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span&gt;It is highly portable programming language.&lt;/span&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;h2&gt;&lt;b&gt;&lt;span&gt;Syntax of C Programming Language&lt;/span&gt;&lt;/b&gt;&lt;/h2&gt;
&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td&gt;
&lt;p&gt;&lt;span&gt;&lt;span&gt;&lt;b&gt;#include&amp;lt;stdio.h&amp;gt; &lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p&gt;&lt;span&gt;&lt;b&gt;#include&amp;lt;conio.h&amp;gt;&lt;/b&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p&gt;&lt;span&gt;&lt;b&gt;int main()&lt;/b&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p&gt;&lt;span&gt;&lt;b&gt;{&lt;/b&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p&gt;&lt;span&gt;&lt;b&gt;printf("Welcome To Learn Coding Website");&lt;/b&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p&gt;&lt;span&gt;&lt;b&gt;}&lt;/b&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p&gt;&lt;span&gt;&lt;b&gt;getch();&lt;/b&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p&gt;&lt;span&gt;&lt;b&gt;}&lt;/b&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p&gt;&lt;span&gt;&lt;b&gt;&lt;br&gt;&lt;/b&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p&gt;&lt;span&gt;&lt;b&gt;**&lt;strong&gt;&lt;em&gt;OUTPUT&lt;/em&gt;&lt;/strong&gt;**&lt;/b&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p&gt;&lt;span&gt;&lt;b&gt;Welcome To Learn Coding Website&lt;/b&gt;&lt;/span&gt;&lt;/p&gt;


&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/div&gt;
&lt;h3&gt;&lt;b&gt;&lt;span&gt;Syntax Description C Program&lt;/span&gt;&lt;/b&gt;&lt;/h3&gt;
&lt;span&gt;&lt;span&gt;&lt;b&gt;#include&amp;lt;stdio.h&amp;gt;:&lt;/b&gt; Studio function is the first.  Line of our code. # symbols represent a preprocessor in the c language program. When the program is the execution of tells. &lt;/span&gt;&lt;span&gt;Include line is the C program, the first line of code. It stands for standard input-output function.&lt;/span&gt;&lt;span&gt;&lt;br&gt;&lt;/span&gt;&lt;span&gt;&lt;b&gt;Conio():&lt;/b&gt; conio function is the c language predefined function.it is the console input/output function.&lt;/span&gt;&lt;span&gt;&lt;br&gt;&lt;/span&gt;&lt;span&gt;&lt;b&gt;Void():&lt;/b&gt; void function is the keyword of c language. Void keyword is returned by the function.&lt;/span&gt;&lt;span&gt;&lt;br&gt;&lt;/span&gt;&lt;span&gt;&lt;b&gt;Main():&lt;/b&gt; main() function here The execution of any program starts from the main function.&lt;/span&gt;&lt;span&gt; &lt;/span&gt;&lt;span&gt;&lt;b&gt;Clrscr(): &lt;/b&gt;clrscr function can be used for the clear output screen of our computer.&lt;/span&gt;&lt;br&gt;&lt;span&gt;&lt;b&gt;Print():&lt;/b&gt; print function is the most useful function in the c programming language. The print function is the predefined function in the c library. Print function using the output screen of our program.&lt;/span&gt;&lt;span&gt;&lt;br&gt;&lt;/span&gt;&lt;span&gt;&lt;b&gt;Getch():&lt;/b&gt; getch function is the c language function.it can be used to hold the output screen. &lt;/span&gt;&lt;/span&gt;&lt;b&gt;&lt;span&gt;&lt;br&gt;&lt;/span&gt;&lt;/b&gt;&lt;h2&gt;&lt;b&gt;&lt;span&gt;FAQ C Programming Language&lt;/span&gt;&lt;/b&gt;&lt;/h2&gt;
&lt;span&gt;&lt;b&gt;&lt;span&gt;Q.1 What is C language simple definition?&lt;/span&gt;&lt;/b&gt;&lt;span&gt;&lt;b&gt;Ans: &lt;/b&gt;C language is a basic general-purpose programming language. It is a base of all high level programming language so it is called basic programming language.&lt;/span&gt;&lt;b&gt;&lt;span&gt;&lt;br&gt;&lt;/span&gt;&lt;/b&gt;&lt;b&gt;&lt;span&gt;Q.2 What is C and its features?&lt;/span&gt;&lt;/b&gt;&lt;span&gt;&lt;b&gt;Ans: &lt;/b&gt;Simple, Powerful, Portable, Machine Independent, Structure Oriented, Mid-Level, High Speed, Flexible.&lt;/span&gt;&lt;b&gt;&lt;span&gt;&lt;br&gt;&lt;/span&gt;&lt;/b&gt;&lt;b&gt;&lt;span&gt;Q.3 What is C language best definition?&lt;/span&gt;&lt;/b&gt;&lt;span&gt;&lt;b&gt;&lt;span&gt;Ans: &lt;/span&gt;&lt;/b&gt;&lt;span&gt;C is a programming language developed in at &amp;amp; T’s Bell Laboratories of the USA in 1972. It was designed and written by a man named Dennis Ritchie. C is a computer programming language&lt;/span&gt;&lt;/span&gt;&lt;b&gt;&lt;span&gt;&lt;br&gt;&lt;/span&gt;&lt;/b&gt;&lt;b&gt;&lt;span&gt;Q.4 What is introduction in programming?&lt;/span&gt;&lt;/b&gt;&lt;span&gt;&lt;span&gt;&lt;b&gt;Ans: &lt;/b&gt;&lt;/span&gt;&lt;span&gt;C language is a basic general-purpose programming language. It is a base of all high level programming language so it is called basic programming language. &lt;/span&gt;&lt;span&gt;C is a programming language developed in at &amp;amp; T’s Bell Laboratories of the USA in &lt;b&gt;1972&lt;/b&gt;. It was designed and written by a man named &lt;b&gt;Dennis Ritchie.&lt;/b&gt; C is a computer programming language&lt;/span&gt;&lt;/span&gt;&lt;br&gt;&lt;br&gt;
&lt;a href="https://www.learncodingnivi.com/2022/11/introduction-c-language.html"&gt;Read More&lt;/a&gt;&lt;br&gt;
&lt;/span&gt;

</description>
    </item>
  </channel>
</rss>
