{"id":83578,"date":"2021-08-30T09:00:53","date_gmt":"2021-08-30T03:30:53","guid":{"rendered":"https:\/\/techvidvan.com\/tutorials\/?p=83578"},"modified":"2021-08-30T09:00:53","modified_gmt":"2021-08-30T03:30:53","slug":"c-programming-language-introduction","status":"publish","type":"post","link":"https:\/\/techvidvan.com\/tutorials\/c-programming-language-introduction\/","title":{"rendered":"What is C &#8211; Introduction to C Programming Language"},"content":{"rendered":"<p>C programming language is a procedural and general-purpose programming language. It is fast and simple to learn and implement. It was developed by Dennis Ritchie in the year of 1972.<\/p>\n<p>The c programming language offers various features and functionalities to the programmers. It includes low-level memory access, simple syntax, and a clean style. It makes the C programming language suitable for system programming like compiler development and operating system development.<\/p>\n<p>After C, several programming languages like PHP, JavaScript, Java, and many others have borrowed the syntax and the features directly or indirectly from the C language.<\/p>\n<p>If someone wants to learn a programming language then he\/she should start learning the C programming language in the first place. C is the base for programming.<\/p>\n<h3>History of C programming language:-<\/h3>\n<p>The father of programming languages is ALGOL. It came in the year 1960. With the help of ALGOL, the developer community learned about the concept of structured programming language.<\/p>\n<p>In the year of 1967, a new programming language named BCPL was introduced. BCPL stands for Basic Combined Programming Language. It is specially used for writing system software.<\/p>\n<p>After 3 long years, a new programming language called B was created by Ken Thompson. It contained multiple features of BCPL. These two programming languages such as B and BCPL were also known as system programming languages.<\/p>\n<p>In 1972, a great computer scientist named Dennis Ritchie created the C programming language. It includes all the features of <strong>B, BCPL, ALGOL,<\/strong> and many more additional features too. That\u2019s what makes it unique compared to these languages. Most of the UNIX operating systems are created using the C language.<\/p>\n<p>Nowadays, the C is used on a variety of operating systems and hardware platforms. In the year 1990, C was approved by the <strong>International Standards Organization(ISO)<\/strong>. C language is also known as<strong> \u2018ANSI C\u2019<\/strong>.<\/p>\n<p><a href=\"https:\/\/techvidvan.com\/tutorials\/wp-content\/uploads\/sites\/2\/2021\/08\/What-is-C-normal-image01.jpg\"><img loading=\"lazy\" decoding=\"async\" class=\"aligncenter size-full wp-image-84388\" src=\"https:\/\/techvidvan.com\/tutorials\/wp-content\/uploads\/sites\/2\/2021\/08\/What-is-C-normal-image01.jpg\" alt=\"History of C\" width=\"410\" height=\"537\" \/><\/a><\/p>\n<h3>Structure of C programming language:-<\/h3>\n<p>Following is a basic example of C language:-<\/p>\n<table>\n<tbody>\n<tr>\n<td><b>Commands<\/b><\/td>\n<td><b>Meaning<\/b><\/td>\n<\/tr>\n<tr>\n<td><span style=\"font-weight: 400\">#include&lt;stdio.h&gt;<\/span><\/td>\n<td><span style=\"font-weight: 400\">It helps you to include the stdio.h header file into your program. With this, you can perform input\/output operations.<\/span><\/td>\n<\/tr>\n<tr>\n<td><span style=\"font-weight: 400\">int main()<\/span><\/td>\n<td><span style=\"font-weight: 400\">From here the execution of the C program starts. It is the main() function.<\/span><\/td>\n<\/tr>\n<tr>\n<td><span style=\"font-weight: 400\">{<\/span><\/td>\n<td><span style=\"font-weight: 400\">Used for indicating the beginning of the main() function.<\/span><\/td>\n<\/tr>\n<tr>\n<td><span style=\"font-weight: 400\">\/* comments *\/<\/span><\/td>\n<td><span style=\"font-weight: 400\">If you write something inside this \u2018\/* *\/\u2019 then it won\u2019t get executed.<\/span><\/td>\n<\/tr>\n<tr>\n<td><span style=\"font-weight: 400\">printf(\u201cHello World\u201d);<\/span><\/td>\n<td><span style=\"font-weight: 400\">Used for printing the output to the screen.<\/span><\/td>\n<\/tr>\n<tr>\n<td><span style=\"font-weight: 400\">return 0;<\/span><\/td>\n<td><span style=\"font-weight: 400\">Used for terminating a C program and it returns 0.<\/span><\/td>\n<\/tr>\n<tr>\n<td><span style=\"font-weight: 400\">}<\/span><\/td>\n<td><span style=\"font-weight: 400\">Used for indicating the end of the main() function.<\/span><\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<h4>Including header files:-<\/h4>\n<p>In a C program code, at first you have to include a header file. To execute the program, you must include a header file into your program code.<\/p>\n<p><strong>Below are some of the header files:-<\/strong><\/p>\n<ul>\n<li>stddef.h \u2013 Used for defining various types and macros.<\/li>\n<li>stdint.h \u2013 Used for defining exact width integer types.<\/li>\n<li>stdio.h \u2013 Used for defining input and output functions.<\/li>\n<li>stdlib.h \u2013 Used for defining numeric conversion functions, pseudo-random network generator, memory allocation.<\/li>\n<li>string.h \u2013 Used for defining string handling functions.<\/li>\n<li>math.h \u2013 Used for defining mathematical functions.<\/li>\n<\/ul>\n<h4>Main Method Declaration:-<\/h4>\n<p>In C, you will have to declare a main method after including the header file.<br \/>\nSyntax:-<\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\">int main()\n{}<\/pre>\n<h4>Variable Declaration:-<\/h4>\n<p>Next, you have to declare some variables to start with the program code. In C, you cannot use any variables if you have not declared it first.<\/p>\n<p><strong>Example:-<\/strong><\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\">int main(){\nfloat a;\nint f;<\/pre>\n<h4>Body:-<\/h4>\n<p>In body, you write codes to perform a specific task or operation such as manipulations, searching, sorting, printing etc.<\/p>\n<p><strong>Example:-<\/strong><\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\">int main(){\nfloat a = 2.3;\nprintf(\"%d\",a);<\/pre>\n<h4>Return Statement:-<\/h4>\n<p>It is the last part of each and every C program. It depends on the return type of the function. Return Statement is used for returning values from a function. If the return type is void then you don\u2019t have to write the return statement in the program code.<\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\">int main(){\nfloat a = 2.3;\nprintf(\"%d\",a);\nreturn 0;\n}\n<\/pre>\n<h3>Real-World Applications of C<\/h3>\n<p>The use of the C programming language is not limited to the development of operating systems and applications. It is also used in GUI development, IDE development etc. Some uses of C language are:-<\/p>\n<ul>\n<li>Operating Systems<\/li>\n<li>Assemblers<\/li>\n<li>Text Editors<\/li>\n<li>Print Spoolers<\/li>\n<li>Modern Programs<\/li>\n<li>Databases<\/li>\n<li>Utilities<\/li>\n<\/ul>\n<p>Hold Tight, because I am going to tell you some exciting real-world applications of C.<\/p>\n<h4>1. Operating Systems:-<\/h4>\n<p>With the help of C, you can write your own operating system. Isn\u2019t it cool? The C programming language is used to develop windows and linux kernels and also the Apple OS X kernel.<\/p>\n<h4>2. Graphical User Interface:-<\/h4>\n<p>It stands for Graphical User Interface. Apart from creating operating systems, C is also used to develop popular adobe softwares such as photoshop, premier pro, After Effects etc.<\/p>\n<h4>3. Embedded Systems:-<\/h4>\n<p>In daily life, we use different embedded systems like coffee machines, microwaves, climate control systems etc. C makes it easy to develop these systems.<\/p>\n<h4>4. Database:-<\/h4>\n<p>Popular database management software, MySQL was developed using the C programming language.<\/p>\n<h4>5. Ease of Computation:-<\/h4>\n<p>C provides faster computation in programs. The implementation of algorithms and data structures is swift in C. With the help of C, you can perform high degree calculations such as MATLAB, Mathematica etc.<\/p>\n<h4>6. Gaming:-<\/h4>\n<p>C programming is relatively faster than Java or Python. C language has been used in various gaming applications and graphics. Many popular games like Tic-Tac-Toe, The Snake game, Sudoku etc. are developed using the C language.<\/p>\n<h4>7. Development of New languages:-<\/h4>\n<p>The C language is fast and easy to understand. So many programming languages like Java, Python, PHP etc. get influenced by this. Even the libraries of Python are developed using C. The syntax and control structures of PERL, PHP and C++ are based upon the C language.<\/p>\n<h4>8. Assemblers:-<\/h4>\n<p>Assemblers are mainly used to translate assembly level language to machine level language. C also helped in developing GNU assembler.<\/p>\n<h4>9. Text Editors:-<\/h4>\n<p>C also helped in creating various text editors like Vim, Gedit etc.<\/p>\n<h4>10. Interpreters:-<\/h4>\n<p>You can also create language interpreters using the C programming langauge. C helped in developing different programming language interpreters like Python and MATLAB interpreters etc.<\/p>\n<h4>11. Compiler Design:-<\/h4>\n<p>C also helped in designing several popular compilers like Clang C, MINGW, Apple C etc. This is one of the most popular uses of C language.<\/p>\n<h3>Features of C:-<\/h3>\n<p><a href=\"https:\/\/techvidvan.com\/tutorials\/wp-content\/uploads\/sites\/2\/2021\/08\/Features-of-C.jpg\"><img loading=\"lazy\" decoding=\"async\" class=\"aligncenter size-full wp-image-84387\" src=\"https:\/\/techvidvan.com\/tutorials\/wp-content\/uploads\/sites\/2\/2021\/08\/Features-of-C.jpg\" alt=\"Features of C\" width=\"1020\" height=\"628\" \/><\/a><\/p>\n<p><strong>1. Portability:-<\/strong> In C, you can execute a block of code in different environments. Suppose, you create a program in one platform and you are running or modifying the program in other platforms. Portability is one of the best features of the C language.<\/p>\n<p><strong>2. Simple and Efficient:-<\/strong> The C programming language is easy to implement. The syntax of the C programming language is easy to understand. If you are confused about which programming language you should learn as a beginner then the C programming language is the best choice for you. It is efficient and simple to learn and use.<\/p>\n<p><strong>3. Speed:-<\/strong> It compiles and executes faster than Java or Python. Because C is a compiler based programming language and Java and Python are an interpreter based programming language.<\/p>\n<p><strong>4. Popular:-<\/strong> The C programming language is used in making operating systems and embedded systems. It is one of the most widely used programming languages in the world.<\/p>\n<p><strong>5. Rich Library:-<\/strong> The C programming language has a rich library which offers useful built-in functions. Apart from these functions, you can also add or define user-defined functions to the library. These functions help in solving numerous types of problems easily and also help in better and clean coding.<\/p>\n<p><strong>6. Dynamism:-<\/strong> The C programming language supports dynamic memory allocation. It is used for utilizing and managing memory. C library has some functions such as malloc(), calloc(), free() etc. to perform dynamic memory allocation.<\/p>\n<p><strong>7. Case Sensitive:-<\/strong> C programming language is case sensitive. If we declare two variables such as \u201cX\u201d and \u201cx\u201d as an integer then the C language treats these two variables differently.<\/p>\n<p><strong>8. Pointer:-<\/strong> Pointer is one of the most useful features in C. With pointers, you can work with the memory in C. You can also use pointers with arrays, structures, functions etc.<\/p>\n<p><strong>9. Recursion:-<\/strong> In C, you can define a function inside of a function. This technique is called Recursion. This will help you in code reusability.<\/p>\n<p><strong>10. Middle-Level Language:-<\/strong> It has features of high-level languages and it has capabilities of assembly language.<\/p>\n<p><strong>11. General-Purpose Language:-<\/strong> The C programming language is being used in various domains like photo editing software to system programming. Also, it is used to develop databases such as MySQL, PostgreSQL, Oracle etc.<\/p>\n<h3>Why is C popular?<\/h3>\n<p>The C programming language has left marks in pretty much every area of Science and Technology. C is easy to understand and the syntax of the C language is simple. That\u2019s what makes C popular. Almost every renowned and successful programmer is very much familiar with the C programming language.<\/p>\n<p>C language has a vast collection of built-in functions which will make your coding a lot easier. It also supports dynamic memory allocation. This is a compiler-based programming language. It is faster than interpreter-based languages like Java or Python.<\/p>\n<h3>Working of C programming language:-<\/h3>\n<p>The C programming language is a compiled language. A compiler first compiles the program code and then it converts it into the object code which is machine-readable. Then the linker will combine different object files and it produces an executable to run the program.<\/p>\n<p>Following is a diagram of executing a C program code.<\/p>\n<p><a href=\"https:\/\/techvidvan.com\/tutorials\/wp-content\/uploads\/sites\/2\/2021\/08\/What-is-C-normal-image02.jpg\"><img loading=\"lazy\" decoding=\"async\" class=\"aligncenter size-full wp-image-84389\" src=\"https:\/\/techvidvan.com\/tutorials\/wp-content\/uploads\/sites\/2\/2021\/08\/What-is-C-normal-image02.jpg\" alt=\"Working of C\" width=\"1140\" height=\"397\" \/><\/a><\/p>\n<p>Below is the list of some compilers:-<\/p>\n<ul>\n<li>Clang Compiler<\/li>\n<li>MinGW Compiler<\/li>\n<li>Turbo C etc.<\/li>\n<\/ul>\n<h3>Why you should learn C:-<\/h3>\n<p>As we said earlier, the C programming language is the base for programming languages. Nowadays, the C programming language is being used widely all over the world. The C language is a faster and much simpler language. C language is also known as a structured programming language. That\u2019s why C is easy to debug and test.<\/p>\n<p>The C programming language contains 32 keywords, a set of powerful built-in functions, several data types which makes the C very useful and powerful. In C, you can also make use of user-defined functions. This helps you with complex programming.<\/p>\n<h3>What is a Compiler:-<\/h3>\n<p>You can say that a compiler is a computer program that is used for converting the program code to machine understandable code. It is software that converts the code to machine-friendly language.<\/p>\n<p>The high-level language is machine-independent and is human readable. So, we have to convert a low-level language to a high-level language. Through compilation, a high-level language gets converted to a low-level language.<\/p>\n<h3>Advantages of C:-<\/h3>\n<p><strong>1. Portability:-<\/strong> In C, you can execute a block of code in different environments. Suppose, you create a program in one platform and you are running or modifying the program in other platforms. Portability is one of the best features of the C programming language.<\/p>\n<p><strong>2. Simple and Efficient:-<\/strong> The C programming language is easy to implement. The syntax of the C language is easy to understand. If you are confused about which programming language you should learn as a beginner then the C language is the best choice for you. It is efficient and simple to learn and use.<\/p>\n<p><strong>3. Speed:-<\/strong> It compiles and executes faster than Java or Python. Because C is a compiler-based programming language and Java and Python are interpreter-based programming languages.<\/p>\n<p><strong>4. Popular:-<\/strong> The C language is used in making operating systems and embedded systems. It is one of the most widely used programming languages in the world.<\/p>\n<p><strong>5. Rich Library:-<\/strong> The C language has a rich library that offers useful built-in functions. Apart from these functions, you can also add or define user-defined functions to the library. These functions help in solving numerous types of problems easily and also help in better and clean coding.<\/p>\n<p><strong>6. Recursion:-<\/strong> In C, you can define a function inside of a function. This technique is called Recursion. This will help you in code reusability.<\/p>\n<p><strong>7. Structured\/Modular Programming language:-<\/strong> In C, you can break the program into small blocks of code with the help of a function. Instead of writing a long and complex code, you can divide the program into small blocks of code as functions then you can perform multiple tasks such as finding the area of square, rectangle, circle etc. A function is used for code reusability.<\/p>\n<h3>Summary:-<\/h3>\n<p>In this tutorial, we learnt what C programming language is. Then we discussed its history, structure, features and applications of the C language. We discussed why you should learn C. We also talked over the popularity of the C language.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>C programming language is a procedural and general-purpose programming language. It is fast and simple to learn and implement. It was developed by Dennis Ritchie in the year of 1972. The c programming language&#46;&#46;&#46;<\/p>\n","protected":false},"author":1,"featured_media":84380,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[3510],"tags":[3445,3398,3403,4126,4127,4128],"class_list":["post-83578","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-c-programming","tag-advantages-of-c","tag-applications-of-c","tag-c-programming-language","tag-features-of-c-language","tag-history-of-c-language","tag-structure-of-c-programming-language"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.7 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>What is C - Introduction to C Programming Language - TechVidvan<\/title>\n<meta name=\"description\" content=\"Learn what is C programming language? See history, structure, features, applications &amp; reasons for popularity of the C language.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/techvidvan.com\/tutorials\/c-programming-language-introduction\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"What is C - Introduction to C Programming Language - TechVidvan\" \/>\n<meta property=\"og:description\" content=\"Learn what is C programming language? See history, structure, features, applications &amp; reasons for popularity of the C language.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/techvidvan.com\/tutorials\/c-programming-language-introduction\/\" \/>\n<meta property=\"og:site_name\" content=\"TechVidvan\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/TechVidvan\/\" \/>\n<meta property=\"article:published_time\" content=\"2021-08-30T03:30:53+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/techvidvan.com\/tutorials\/wp-content\/uploads\/2021\/07\/What-is-C.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1200\" \/>\n\t<meta property=\"og:image:height\" content=\"628\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"TechVidvan Team\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@vidvantech\" \/>\n<meta name=\"twitter:site\" content=\"@vidvantech\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"TechVidvan Team\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"10 minutes\" \/>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"What is C - Introduction to C Programming Language - TechVidvan","description":"Learn what is C programming language? See history, structure, features, applications & reasons for popularity of the C language.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/techvidvan.com\/tutorials\/c-programming-language-introduction\/","og_locale":"en_US","og_type":"article","og_title":"What is C - Introduction to C Programming Language - TechVidvan","og_description":"Learn what is C programming language? See history, structure, features, applications & reasons for popularity of the C language.","og_url":"https:\/\/techvidvan.com\/tutorials\/c-programming-language-introduction\/","og_site_name":"TechVidvan","article_publisher":"https:\/\/www.facebook.com\/TechVidvan\/","article_published_time":"2021-08-30T03:30:53+00:00","og_image":[{"width":1200,"height":628,"url":"https:\/\/techvidvan.com\/tutorials\/wp-content\/uploads\/2021\/07\/What-is-C.jpg","type":"image\/jpeg"}],"author":"TechVidvan Team","twitter_card":"summary_large_image","twitter_creator":"@vidvantech","twitter_site":"@vidvantech","twitter_misc":{"Written by":"TechVidvan Team","Est. reading time":"10 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/techvidvan.com\/tutorials\/c-programming-language-introduction\/#article","isPartOf":{"@id":"https:\/\/techvidvan.com\/tutorials\/c-programming-language-introduction\/"},"author":{"name":"TechVidvan Team","@id":"https:\/\/techvidvan.com\/tutorials\/#\/schema\/person\/e9c26e74dd3d87421f7ada9433b8cd22"},"headline":"What is C &#8211; Introduction to C Programming Language","datePublished":"2021-08-30T03:30:53+00:00","mainEntityOfPage":{"@id":"https:\/\/techvidvan.com\/tutorials\/c-programming-language-introduction\/"},"wordCount":2104,"commentCount":0,"publisher":{"@id":"https:\/\/techvidvan.com\/tutorials\/#organization"},"image":{"@id":"https:\/\/techvidvan.com\/tutorials\/c-programming-language-introduction\/#primaryimage"},"thumbnailUrl":"https:\/\/techvidvan.com\/tutorials\/wp-content\/uploads\/2021\/07\/What-is-C.jpg","keywords":["Advantages of C","Applications of C++","c++ programming Language","Features of C Language","History of C Language","Structure of C programming language"],"articleSection":["C Tutorials"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/techvidvan.com\/tutorials\/c-programming-language-introduction\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/techvidvan.com\/tutorials\/c-programming-language-introduction\/","url":"https:\/\/techvidvan.com\/tutorials\/c-programming-language-introduction\/","name":"What is C - Introduction to C Programming Language - TechVidvan","isPartOf":{"@id":"https:\/\/techvidvan.com\/tutorials\/#website"},"primaryImageOfPage":{"@id":"https:\/\/techvidvan.com\/tutorials\/c-programming-language-introduction\/#primaryimage"},"image":{"@id":"https:\/\/techvidvan.com\/tutorials\/c-programming-language-introduction\/#primaryimage"},"thumbnailUrl":"https:\/\/techvidvan.com\/tutorials\/wp-content\/uploads\/2021\/07\/What-is-C.jpg","datePublished":"2021-08-30T03:30:53+00:00","description":"Learn what is C programming language? See history, structure, features, applications & reasons for popularity of the C language.","breadcrumb":{"@id":"https:\/\/techvidvan.com\/tutorials\/c-programming-language-introduction\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/techvidvan.com\/tutorials\/c-programming-language-introduction\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/techvidvan.com\/tutorials\/c-programming-language-introduction\/#primaryimage","url":"https:\/\/techvidvan.com\/tutorials\/wp-content\/uploads\/2021\/07\/What-is-C.jpg","contentUrl":"https:\/\/techvidvan.com\/tutorials\/wp-content\/uploads\/2021\/07\/What-is-C.jpg","width":1200,"height":628,"caption":"What is C Programming Language"},{"@type":"BreadcrumbList","@id":"https:\/\/techvidvan.com\/tutorials\/c-programming-language-introduction\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/techvidvan.com\/tutorials\/"},{"@type":"ListItem","position":2,"name":"What is C &#8211; Introduction to C Programming Language"}]},{"@type":"WebSite","@id":"https:\/\/techvidvan.com\/tutorials\/#website","url":"https:\/\/techvidvan.com\/tutorials\/","name":"TechVidvan Blogs","description":"","publisher":{"@id":"https:\/\/techvidvan.com\/tutorials\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/techvidvan.com\/tutorials\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/techvidvan.com\/tutorials\/#organization","name":"TechVidvan","url":"https:\/\/techvidvan.com\/tutorials\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/techvidvan.com\/tutorials\/#\/schema\/logo\/image\/","url":"https:\/\/techvidvan.com\/tutorials\/wp-content\/uploads\/2024\/03\/techvidvan-logo-200x50-1.webp","contentUrl":"https:\/\/techvidvan.com\/tutorials\/wp-content\/uploads\/2024\/03\/techvidvan-logo-200x50-1.webp","width":200,"height":50,"caption":"TechVidvan"},"image":{"@id":"https:\/\/techvidvan.com\/tutorials\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/TechVidvan\/","https:\/\/x.com\/vidvantech"]},{"@type":"Person","@id":"https:\/\/techvidvan.com\/tutorials\/#\/schema\/person\/e9c26e74dd3d87421f7ada9433b8cd22","name":"TechVidvan Team","description":"The TechVidvan Team delivers practical, beginner-friendly tutorials on programming, Java, Python, C++, DSA, AI, ML, data Science, Android, Flutter, MERN, Web Development, and technology. Our experts are here to help you upskill and excel in today\u2019s tech industry."}]}},"amp_enabled":true,"_links":{"self":[{"href":"https:\/\/techvidvan.com\/tutorials\/wp-json\/wp\/v2\/posts\/83578","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/techvidvan.com\/tutorials\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/techvidvan.com\/tutorials\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/techvidvan.com\/tutorials\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/techvidvan.com\/tutorials\/wp-json\/wp\/v2\/comments?post=83578"}],"version-history":[{"count":0,"href":"https:\/\/techvidvan.com\/tutorials\/wp-json\/wp\/v2\/posts\/83578\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/techvidvan.com\/tutorials\/wp-json\/wp\/v2\/media\/84380"}],"wp:attachment":[{"href":"https:\/\/techvidvan.com\/tutorials\/wp-json\/wp\/v2\/media?parent=83578"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/techvidvan.com\/tutorials\/wp-json\/wp\/v2\/categories?post=83578"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/techvidvan.com\/tutorials\/wp-json\/wp\/v2\/tags?post=83578"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}