-
Notifications
You must be signed in to change notification settings - Fork 0
/
c++.html
438 lines (427 loc) · 30.9 KB
/
c++.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>C++ Learning Roadmap</title>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css">
<link rel="stylesheet" href="c.css">
</head>
<body>
<nav class="navbar navbar-expand-lg">
<div class="container-fluid">
<a href="index.html" class="navbar-brand">
<img src="logo3-modified.jpg" alt="Logo">
</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse"
data-bs-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false"
aria-label="Toggle navigation">
<!-- <span class="navbar-toggler-icon"></span> -->
<img
src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAFFJREFUSEvtlEkKADAIA83/H52eu1APZQShnquTBaqAR/D9+IA04fqIbDuVdXkgaRK9OcABL+pPu/Ud4A7wDnAAHlF/AN4BDujfwXewJoD/pgNrVBgZX2h0sgAAAABJRU5ErkJggg==" />
</button>
<div class="links collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav me-auto mb-2 mb-lg-0">
<li class="nav-item"><a class="nav-link" aria-current="page" href="index.html">Home</a></li>
<li class="nav-item"><a class="nav-link" aria-current="page" href="Contact.html">Contacts</a></li>
</ul>
<div class="user links">
<ul class="navbar-nav me-auto mb-2 mb-lg-0">
<button type="button" class="btn btn-outline-primary btn-lg" onclick="Login()">Login</button>
<button type="button" class="btn btn-primary btn-lg" onclick="SignUp()">Sign up</button>
</ul>
</div>
</div>
</div>
</nav>
<div class="main">
<div class="heading">C++ Programming Roadmap</div>
<div class="intro">
<div class="card">
<h3>What is C++</h3>
C++ is a powerful and versatile programming language designed to provide a comprehensive toolset for
software development. It builds upon the foundations of the C language while introducing features for
object-oriented programming (OOP), making it suitable for a wide range of applications across different
domains. With its support for OOP principles like classes, inheritance, and polymorphism, C++ enables
developers to write modular, reusable, and well-organized code. This flexibility allows projects to be
approached from both procedural and object-oriented paradigms, catering to various development needs.
Known for its efficiency and performance, C++ grants developers low-level control over system resources,
making it ideal for applications where speed and memory usage are critical, such as games and operating
systems. Additionally, C++ boasts a rich standard library, providing a plethora of functions and classes
for common tasks, thereby streamlining development efforts. With its portability across different
platforms and its ability to deliver high-performance applications, C++ remains a cornerstone of modern
software engineering.
</div>
<br><br>
<div class="card">
<h3>Why learn C++</h3>
Learning C++ offers numerous benefits for aspiring programmers:
Mastering C++ provides a deep understanding of fundamental programming concepts due to its roots in the
C language. This strong foundation is invaluable, serving as a solid base for learning other languages
and tackling diverse programming challenges.
C++ is widely used across industries, particularly in fields like game development, system programming,
embedded systems, and performance-critical applications. By learning C++, you gain access to a plethora
of job opportunities and the ability to work on exciting and impactful projects.
The language's support for both procedural and object-oriented programming allows developers to approach
problems from multiple angles, fostering versatility and adaptability in software development.
C++ emphasizes efficiency and performance, making it an excellent choice for applications where speed
and resource management are crucial. Understanding memory management, pointers, and low-level system
interactions in C++ equips developers with the skills needed to optimize code and tackle complex
challenges.
Additionally, C++ offers a rich ecosystem of libraries, frameworks, and tools that enhance productivity
and streamline development. Whether you're building high-performance applications or experimenting with
cutting-edge technologies, the C++ ecosystem provides robust support.
Finally, learning C++ encourages critical thinking, problem-solving, and attention to detail, qualities
essential for success in software engineering and related fields. Overall, mastering C++ is not just
about learning a language; it's about acquiring a versatile skill set that opens doors to exciting
opportunities and empowers you to tackle the most demanding programming tasks.
</div>
<br><br>
<div class="card">
<h3>The main features of the C++ language include:</h3>
<ul>
<li>Strong foundation in fundamental programming concepts inherited from C language.</li>
<li>Widely used in industries like game development, system programming, and embedded systems.</li>
<li>Supports both procedural and object-oriented programming paradigms.</li>
<li>Emphasizes efficiency and performance, making it suitable for resource-intensive applications.
</li>
<li>Rich ecosystem of libraries, frameworks, and tools for enhanced productivity.</li>
<li>Encourages critical thinking, problem-solving, and attention to detail.</li>
</ul>
</div>
<br><br>
<h3 class="last">Roadmap</h3>
<div class="roadmap">
<header>
<div class="nav nav-tabs" id="nav-tab" role="tablist">
<button class="nav-link active" id="nav-home-tab" data-bs-toggle="tab"
data-bs-target="#nav-home" type="button" role="tab" aria-controls="nav-home"
aria-selected="true">Beginner Level</button>
<button class="nav-link" id="nav-profile-tab" data-bs-toggle="tab" data-bs-target="#nav-profile"
type="button" role="tab" aria-controls="nav-profile" aria-selected="false">Intermediate
Level</button>
<button class="nav-link" id="nav-contact-tab" data-bs-toggle="tab" data-bs-target="#nav-contact"
type="button" role="tab" aria-controls="nav-contact" aria-selected="false">Advanced
Level</button>
<button class="nav-link" id="nav-Expert-tab" data-bs-toggle="tab" data-bs-target="#nav-Expert"
type="button" role="tab" aria-controls="nav-Expert" aria-selected="false">Expert
Level</button>
</div>
</header>
<div class="tab-content" id="nav-tabContent">
<div class="tab-pane fade show active" id="nav-home" role="tabpanel" aria-labelledby="nav-home-tab"
tabindex="0">
<div class="accordion" id="accordionExample">
<div class="accordion-item">
<h2 class="accordion-header">
<button class="accordion-button" type="button" data-bs-toggle="collapse"
data-bs-target="#collapseOne" aria-expanded="false" aria-controls="collapseOne">
Basics of Programming in C++
</button>
</h2>
<div id="collapseOne" class="accordion-collapse collapse show"
data-bs-parent="#accordionExample">
<div class="accordion-body">
<a
href="https://www.geeksforgeeks.org/c-plus-plus/?ref=ghm">
Reference Link</a> <br>
<iframe width="100%" height="315"
src="https://www.youtube.com/embed/oW2r0r_i5Ps?si=7mrUMCXs7LU3QE0G"
title="YouTube video player" frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share"
referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
</div>
</div>
</div>
<div class="accordion-item">
<h2 class="accordion-header">
<button class="accordion-button collapsed" type="button" data-bs-toggle="collapse"
data-bs-target="#collapseTwo" aria-expanded="false" aria-controls="collapseTwo">
Control Structures
</button>
</h2>
<div id="collapseTwo" class="accordion-collapse collapse"
data-bs-parent="#accordionExample">
<div class="accordion-body">
<a
href="https://www.geeksforgeeks.org/c-plus-plus/?ref=ghm#cpp_control_statements">
Reference Link</a> <br>
<iframe width="100%" height="315"
src="https://www.youtube.com/embed/AY96XFqb934?si=m_plZdhh2lr01h10"
title="YouTube video player" frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share"
referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
</div>
</div>
</div>
<div class="accordion-item">
<h2 class="accordion-header">
<button class="accordion-button collapsed" type="button" data-bs-toggle="collapse"
data-bs-target="#collapseThree" aria-expanded="false"
aria-controls="collapseThree">
Functions and Modular Programming
</button>
</h2>
<div id="collapseThree" class="accordion-collapse collapse"
data-bs-parent="#accordionExample">
<div class="accordion-body">
<a
href="https://www.geeksforgeeks.org/c-plus-plus/?ref=ghm#cpp_functions">
Reference Link</a> <br>
<iframe width="560" height="315"
src="https://www.youtube.com/embed/RFLFX1boGwo?si=dH9xvIjH6S8WqaO6"
title="YouTube video player" frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share"
referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
</div>
</div>
</div>
</div>
</div>
<div class="tab-pane fade" id="nav-profile" role="tabpanel" aria-labelledby="nav-profile-tab"
tabindex="0">
<div class="accordion" id="accordionExample">
<div class="accordion-item">
<h2 class="accordion-header">
<button class="accordion-button" type="button" data-bs-toggle="collapse"
data-bs-target="#collapseOne" aria-expanded="true" aria-controls="collapseOne">
Arrays and Strings
</button>
</h2>
<div id="collapseOne" class="accordion-collapse collapse show"
data-bs-parent="#accordionExample">
<div class="accordion-body">
<a
href="https://www.geeksforgeeks.org/c-plus-plus/?ref=ghm#cpp_arrays">
Reference Link</a> <br>
<iframe width="100%" height="315"
src="https://www.youtube.com/watch?v=oW2r0r_i5Ps&list=PLu0W_9lII9agpFUAlPFe_VNSlXW5uE0YL&index=2"
title="YouTube video player" frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share"
referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
</div>
</div>
</div>
<div class="accordion-item">
<h2 class="accordion-header">
<button class="accordion-button collapsed" type="button" data-bs-toggle="collapse"
data-bs-target="#collapseTwo" aria-expanded="false" aria-controls="collapseTwo">
Arrays and Strings
</button>
</h2>
<div id="collapseTwo" class="accordion-collapse collapse"
data-bs-parent="#accordionExample">
<div class="accordion-body">
<a
href="https://www.geeksforgeeks.org/writing-first-c-program-hello-world-example/?ref=lbp">
Reference Link</a> <br>
<iframe width="560" height="315"
src="https://www.youtube.com/embed/ePJxpxsnkGw?si=2xNld5VFBFq5miMc"
title="YouTube video player" frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share"
referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
</div>
</div>
</div>
<div class="accordion-item">
<h2 class="accordion-header">
<button class="accordion-button collapsed" type="button" data-bs-toggle="collapse"
data-bs-target="#collapseThree" aria-expanded="false"
aria-controls="collapseThree">
Object-Oriented Programming (OOP)
</button>
</h2>
<div id="collapseThree" class="accordion-collapse collapse"
data-bs-parent="#accordionExample">
<div class="accordion-body">
<a
href="https://www.geeksforgeeks.org/c-plus-plus/?ref=ghm#cpp_oops">
Reference Link</a> <br>
<iframe width="560" height="315"
src="https://www.youtube.com/embed/nGJTWaaFdjc?si=Dbsh51H4kfp0tTNX"
title="YouTube video player" frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share"
referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
</div>
</div>
</div>
</div>
</div>
<div class="tab-pane fade" id="nav-contact" role="tabpanel" aria-labelledby="nav-contact-tab"
tabindex="0">
<div class="accordion" id="accordionExample">
<div class="accordion-item">
<h2 class="accordion-header">
<button class="accordion-button" type="button" data-bs-toggle="collapse"
data-bs-target="#collapseOne" aria-expanded="true" aria-controls="collapseOne">
Standard Template Library (STL)
</button>
</h2>
<div id="collapseOne" class="accordion-collapse collapse show"
data-bs-parent="#accordionExample">
<div class="accordion-body">
<a
href="https://www.geeksforgeeks.org/c-plus-plus/?ref=ghm#cpp_stl">
Reference Link</a> <br>
<iframe width="560" height="315"
src="https://www.youtube.com/embed/c9iREsYpayk?si=1qjz3KOnpqR_yEEs"
title="YouTube video player" frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share"
referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
</div>
</div>
</div>
<div class="accordion-item">
<h2 class="accordion-header">
<button class="accordion-button collapsed" type="button" data-bs-toggle="collapse"
data-bs-target="#collapseTwo" aria-expanded="false" aria-controls="collapseTwo">
Exception Handling
</button>
</h2>
<div id="collapseTwo" class="accordion-collapse collapse"
data-bs-parent="#accordionExample">
<div class="accordion-body">
<a
href="https://www.geeksforgeeks.org/c-plus-plus/?ref=ghm#cpp_expception_handling">
Reference Link</a> <br>
<iframe width="560" height="315"
src="https://www.youtube.com/embed/7hcQQEHZPiQ?si=uHSxRm5jezkEg1lG"
title="YouTube video player" frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share"
referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
</div>
</div>
</div>
<div class="accordion-item">
<h2 class="accordion-header">
<button class="accordion-button collapsed" type="button" data-bs-toggle="collapse"
data-bs-target="#collapseThree" aria-expanded="false"
aria-controls="collapseThree">
Templates and Generic Programming
</button>
</h2>
<div id="collapseThree" class="accordion-collapse collapse"
data-bs-parent="#accordionExample">
<div class="accordion-body">
<a
href="https://www.geeksforgeeks.org/c-plus-plus/?ref=ghm#cpp_templates">
Reference Link</a> <br>
<iframe width="560" height="315"
src="https://www.youtube.com/embed/kKJeekDKU30?si=ACOEzitBkL6IQWml"
title="YouTube video player" frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share"
referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
</div>
</div>
</div>
</div>
</div>
<div class="tab-pane fade" id="nav-Expert" role="tabpanel" aria-labelledby="nav-Expert-tab"
tabindex="0">
<div class="accordion" id="accordionExample">
<div class="accordion-item">
<h2 class="accordion-header">
<button class="accordion-button" type="button" data-bs-toggle="collapse"
data-bs-target="#collapseOne" aria-expanded="true" aria-controls="collapseOne">
Advanced C++ Features
</button>
</h2>
<div id="collapseOne" class="accordion-collapse collapse show"
data-bs-parent="#accordionExample">
<div class="accordion-body">
<a
href="https://www.geeksforgeeks.org/c-plus-plus/?ref=ghm#cpp_advanced">
Reference Link</a> <br>
<iframe width="560" height="315"
src="https://www.youtube.com/embed/e4r5gyiVQUg?si=xJLcbaL7t2SfKJn8"
title="YouTube video player" frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share"
referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
</div>
</div>
</div>
<div class="accordion-item">
<h2 class="accordion-header">
<button class="accordion-button collapsed" type="button" data-bs-toggle="collapse"
data-bs-target="#collapseTwo" aria-expanded="false" aria-controls="collapseTwo">
Concurrency and Multithreading
</button>
</h2>
<div id="collapseTwo" class="accordion-collapse collapse"
data-bs-parent="#accordionExample">
<div class="accordion-body">
<a
href="https://www.geeksforgeeks.org/writing-first-c-program-hello-world-example/?ref=lbp">
Reference Link</a> <br>
<iframe width="560" height="315"
src="https://www.youtube.com/embed/TPVH_coGAQs?si=SOkNmRcfCsC1I-rO"
title="YouTube video player" frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share"
referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
</div>
</div>
</div>
<div class="accordion-item">
<h2 class="accordion-header">
<button class="accordion-button collapsed" type="button" data-bs-toggle="collapse"
data-bs-target="#collapseThree" aria-expanded="false"
aria-controls="collapseThree">
Performance Optimization
</button>
</h2>
<div id="collapseThree" class="accordion-collapse collapse"
data-bs-parent="#accordionExample">
<div class="accordion-body">
<a
href="https://www.geeksforgeeks.org/c-plus-plus/?ref=ghm#cp_cpp">
Reference Link</a> <br>
<iframe width="560" height="315"
src="https://www.youtube.com/embed/NH1Tta7purM?si=O9xpbNMW_O_Uj2lk"
title="YouTube video player" frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share"
referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<h3>Completion</h3>
<p class="per">0%</p>
<div class="progress" role="progressbar" aria-label="Basic example" aria-valuenow="0" aria-valuemin="0"
aria-valuemax="100">
<div class="progress-bar" style="width: 0%"></div>
</div>
</div>
</div>
<footer>
<div class="About_us">
<h4>About us</h4>
<p>Welcome to Skill Route, your ultimate destination for mastering computer languages! At Skill Route, we
believe in the power of learning and the endless possibilities it brings. Whether you're a beginner
taking your first steps into the world of programming or an experienced coder looking to expand your
skill set, Skill Route is here to guide you on your learning journey. Our platform offers comprehensive
courses in a variety of programming languages, including C, C++, Java, JavaScript, HTML, CSS, and MySQL.
Each course is carefully crafted by industry experts to provide you with the knowledge and skills you
need to succeed in today's digital world. But Skill Route is more than just a collection of courses.
We're a community of passionate learners, dedicated instructors, and supportive mentors, all working
together to help you achieve your goals. Whether you're struggling with a tough concept or celebrating a
breakthrough, you'll find a friendly and supportive environment here at Skill Route. So why wait? Start
your journey to mastery today with Skill Route. Join us, and unlock your full potential in the world of
programming. Let's code the future together!</p>
© 2024 Skill Route. All rights reserved.
</div>
</footer>
<script>
function Login() {
window.location.href = 'login.html', '_blank';
}
function SignUp() {
window.location.href = 'sign up.html';
}
</script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"></script>
<script src="checkbox.js"></script>
</body>
</html>