You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: README.md
+20-3
Original file line number
Diff line number
Diff line change
@@ -5,20 +5,37 @@ This repository contains programs in the C++ programming language related to Obj
5
5
6
6
---
7
7
8
-
<h1>About C++ Programming</h1>
8
+
# About C++ Programming
9
9
--> C++ is a cross-platform language that can be used to create high-performance applications.<br><br>
10
10
--> C++ was developed by Bjarne Stroustrup, as an extension to the C language.<br><br>
11
11
--> C++ gives programmers a high level of control over system resources and memory.<br><br>
12
12
--> C++ is an object-oriented programming language which gives a clear structure to programs and allows code to be reused, lowering development costs.<br><br>
13
13
14
14
---
15
+
# Mode of Execution used <imgsrc="https://logodix.com/logo/1709678.png"height=30pxwidth=30px>
16
+
<h2>GCC Compiler</h2>
17
+
--> GCC stands for GNU C/C++ Compiler.<br><br>
18
+
--> To begin with GCC, visit the official website <ahref="https://gcc.gnu.org/"><imgsrc="https://logodix.com/logo/1709678.png"height=30pxwidth=30px></a><br><br>
19
+
--> Download GCC according to the platform being used like Linux, MacOs or Windows.<br><br>
20
+
--> Follow the setup wizard.<br><br>
21
+
--> Write c++ code in any text editor or IDE and save it with .cpp extention.<br><br>
22
+
--> Then just open the console and run this command -<br><br>
23
+
24
+
```
25
+
g++ filename.cpp -o Output
26
+
```
27
+
--> Filename is the name of the C++ script file and Output is the name of the output file.<br><br>
28
+
--> After this command is executed, if the code is successfully compiled output file will be saved in the same location as the code file.<br><br>
29
+
--> Once this Output file is executed in command prompt, the output will be displayed.
0 commit comments