<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>setting up complier in c++ | Student Projects</title>
	<atom:link href="https://studentprojects.in/tag/setting-up-complier-in-c/feed/" rel="self" type="application/rss+xml" />
	<link>https://studentprojects.in</link>
	<description>Microcontroller projects, Circuit Diagrams, Project Ideas</description>
	<lastBuildDate>Sat, 10 Dec 2022 04:47:23 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.1.7</generator>
	<item>
		<title>Setting up the compiler in C++</title>
		<link>https://studentprojects.in/software-development/cpp/c-tutorials-cpp/setting-up-the-compiler-in-c/</link>
					<comments>https://studentprojects.in/software-development/cpp/c-tutorials-cpp/setting-up-the-compiler-in-c/#respond</comments>
		
		<dc:creator><![CDATA[Shubhajna Rai]]></dc:creator>
		<pubDate>Sun, 04 Dec 2022 07:22:00 +0000</pubDate>
				<category><![CDATA[C++ Tutorials]]></category>
		<category><![CDATA[setting up complier in c++]]></category>
		<guid isPermaLink="false">https://studentprojects.in/?p=9815</guid>

					<description><![CDATA[<p>Visit https://code.visualstudio.com/docs/languages/cpp to set up the compiler. Choose C++ on the sidebar. Pick one of the choices under &#8220;GCC through Mingw-w64 on Windows&#8221; from the list. Choose the option to install SourceForge. Run the setup programme once the downloading is complete, and then select all of the default options, just as we did when installing</p>
<p>The post <a href="https://studentprojects.in/software-development/cpp/c-tutorials-cpp/setting-up-the-compiler-in-c/">Setting up the compiler in C++</a> first appeared on <a href="https://studentprojects.in">Student Projects</a>.</p>]]></description>
										<content:encoded><![CDATA[<div class="is-layout-flow wp-block-group"><div class="wp-block-group__inner-container">
<ul><li>Visit https://code.visualstudio.com/docs/languages/cpp to set up the compiler.</li><li>Choose C++ on the sidebar.</li><li>Pick one of the choices under &#8220;GCC through Mingw-w64 on Windows&#8221; from the list.</li><li>Choose the option to install SourceForge.</li></ul>



<ul><li>Run the setup programme once the downloading is complete, and then select all of the default options, just as we did when installing Visual Studio Code.</li></ul>
</div></div>



<p><strong>Setting Compiler&#8217;s Path</strong></p>



<ul><li>Navigate to the directory C. Enter the Program Files directory. Open MinGW-64 next. Fire up MinGW-32. the bin folder follows. Save the path or URL to the bin once you&#8217;ve reached it.</li><li>then visit &#8220;This PC&#8217;s&#8221; properties.</li><li>&#8220;Advanced System Settings&#8221; should be chosen.</li><li>Choose &#8220;Environment Variable&#8221; from the menu.</li><li>Change the environment variable to include the copied path.</li><li>You may now access your IDE and start running C++ programmes there. Configuration is complete.</li></ul>



<p>Creating your first C++ programme</p>



<p>Launch VSCode. Here is the most basic print statement we can use to get started.</p>



<pre class="wp-block-code"><code lang="cpp" class="language-cpp">#include &lt;iostream&gt;
 
int main()
{
    std::cout &lt;&lt; "Hello World";
    return 0;
}
</code></pre>



<p>Output:</p>



<pre class="wp-block-code"><code lang="cpp" class="language-cpp">Hello World</code></pre><p>The post <a href="https://studentprojects.in/software-development/cpp/c-tutorials-cpp/setting-up-the-compiler-in-c/">Setting up the compiler in C++</a> first appeared on <a href="https://studentprojects.in">Student Projects</a>.</p>]]></content:encoded>
					
					<wfw:commentRss>https://studentprojects.in/software-development/cpp/c-tutorials-cpp/setting-up-the-compiler-in-c/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>
