Skip to content

Commit c00c6a6

Browse files
Update README.md
1 parent 58bb84d commit c00c6a6

File tree

1 file changed

+20
-3
lines changed

1 file changed

+20
-3
lines changed

README.md

+20-3
Original file line numberDiff line numberDiff line change
@@ -5,20 +5,37 @@ This repository contains programs in the C++ programming language related to Obj
55

66
---
77

8-
<h1>About C++ Programming</h1>
8+
# About C++ Programming
99
--> C++ is a cross-platform language that can be used to create high-performance applications.<br><br>
1010
--> C++ was developed by Bjarne Stroustrup, as an extension to the C language.<br><br>
1111
--> C++ gives programmers a high level of control over system resources and memory.<br><br>
1212
--> 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>
1313

1414
---
15+
# Mode of Execution used <img src="https://logodix.com/logo/1709678.png" height=30px width=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 &nbsp;<a href="https://gcc.gnu.org/"><img src="https://logodix.com/logo/1709678.png" height=30px width=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.
1530

16-
<h1>C++ Programming Features</h1>
31+
---
32+
33+
# C++ Programming Features
1734

1835
<img src="https://github.com/madhurimarawat/Object-oriented-programming-with-c-plus-plus/assets/105432776/3062241f-9f30-4a81-a0bc-9627eaa39f5c" height=400 width=650>
1936

2037
---
21-
<h1> Object Oriented Programming</h1>
38+
# Object Oriented Programming
2239

2340
<img src="https://github.com/madhurimarawat/Object-oriented-programming-with-c-plus-plus/assets/105432776/a5982638-92e3-4920-9b67-c0b60ff2ffd7" height=430 width=650>
2441
<br>

0 commit comments

Comments
 (0)