-
Notifications
You must be signed in to change notification settings - Fork 1
/
c++.html
473 lines (470 loc) · 30.8 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
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
<!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="../Pics/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="">Profile</a></li>
<li class="nav-item"><a class="nav-link" aria-current="page" href="">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 procedural programming language initially developed by Dennis Ritchie in the year 1972 at Bell
Laboratories of AT&T Labs. It was mainly developed as a system programming language to write the UNIX
operating
system.
Many later languages have borrowed syntax/features directly or indirectly from the C language. Like
syntax of
Java, PHP, JavaScript, and many other languages are mainly based on the C language. C++ is nearly a
superset of
C language (Only a few programs may compile in C, but not in C++).
So, if a person learns C programming first, it will help him to learn any modern programming language as
well.
As learning C help to understand a lot of the underlying architecture of the operating system. Like
pointers,
working with memory locations, etc.
</div>
<br><br>
<div class="card">
<h3>Why learn C++</h3>
C programming language is known for its simplicity and efficiency. It is the best choice to start with
programming as it gives you a foundational understanding of programming.
Many later languages have borrowed syntax/features directly or indirectly from the C language. Like
syntax of
Java, PHP, JavaScript, and many other languages are mainly based on the C language. C++ is nearly a
superset of
C language (Only a few programs may compile in C, but not in C++).
<br>
So, if a person learns C programming first, it will help him to learn any modern programming language as
well.
As learning C help to understand a lot of the underlying architecture of the operating system. Like
pointers,
working with memory locations, etc.
</div>
<br><br>
<div class="card">
<h3>The main features of the C++ language include:</h3>
<ul>
<li>General Purpose and Portable</li>
<li>Low-level Memory Access</li>
<li>Fast Speed</li>
<li>Clean Syntax</li>
<li>
Procedural Language
</li>
<li>
Middle-Level Language
</li>
<li>
Libraries with Rich Functions
</li>
<li>
Rich set of built-in Operators
</li>
<li>
General-Purpose Language
</li>
<li>
Statically Type
</li>
<li>
Modularity
</li>
<li>
Fast and Efficient
</li>
<li>
Portability
</li>
<li>
Easy to Extend
</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">
<strong>This is the first item's accordion body.</strong> It is shown by
default, until
the collapse plugin adds the appropriate classes that we use to style each
element.
These classes control the overall appearance, as well as the showing and hiding
via CSS
transitions. You can modify any of this with custom CSS or overriding our
default
variables. It's also worth noting that just about any HTML can go within the
<code>.accordion-body</code>, though the transition does limit overflow.
</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">
<strong>This is the second item's accordion body.</strong> It is hidden by
default,
until the collapse plugin adds the appropriate classes that we use to style each
element. These classes control the overall appearance, as well as the showing
and hiding
via CSS transitions. You can modify any of this with custom CSS or overriding
our
default variables. It's also worth noting that just about any HTML can go within
the
<code>.accordion-body</code>, though the transition does limit overflow.
</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">
<strong>This is the third item's accordion body.</strong> It is hidden by
default, until
the collapse plugin adds the appropriate classes that we use to style each
element.
These classes control the overall appearance, as well as the showing and hiding
via CSS
transitions. You can modify any of this with custom CSS or overriding our
default
variables. It's also worth noting that just about any HTML can go within the
<code>.accordion-body</code>, though the transition does limit overflow.
</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">
<strong>This is the first item's accordion body.</strong> It is shown by
default, until
the collapse plugin adds the appropriate classes that we use to style each
element.
These classes control the overall appearance, as well as the showing and hiding
via CSS
transitions. You can modify any of this with custom CSS or overriding our
default
variables. It's also worth noting that just about any HTML can go within the
<code>.accordion-body</code>, though the transition does limit overflow.
</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">
<strong>This is the second item's accordion body.</strong> It is hidden by
default,
until the collapse plugin adds the appropriate classes that we use to style each
element. These classes control the overall appearance, as well as the showing
and hiding
via CSS transitions. You can modify any of this with custom CSS or overriding
our
default variables. It's also worth noting that just about any HTML can go within
the
<code>.accordion-body</code>, though the transition does limit overflow.
</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">
<strong>This is the third item's accordion body.</strong> It is hidden by
default, until
the collapse plugin adds the appropriate classes that we use to style each
element.
These classes control the overall appearance, as well as the showing and hiding
via CSS
transitions. You can modify any of this with custom CSS or overriding our
default
variables. It's also worth noting that just about any HTML can go within the
<code>.accordion-body</code>, though the transition does limit overflow.
</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">
<strong>This is the first item's accordion body.</strong> It is shown by
default, until
the collapse plugin adds the appropriate classes that we use to style each
element.
These classes control the overall appearance, as well as the showing and hiding
via CSS
transitions. You can modify any of this with custom CSS or overriding our
default
variables. It's also worth noting that just about any HTML can go within the
<code>.accordion-body</code>, though the transition does limit overflow.
</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">
<strong>This is the second item's accordion body.</strong> It is hidden by
default,
until the collapse plugin adds the appropriate classes that we use to style each
element. These classes control the overall appearance, as well as the showing
and hiding
via CSS transitions. You can modify any of this with custom CSS or overriding
our
default variables. It's also worth noting that just about any HTML can go within
the
<code>.accordion-body</code>, though the transition does limit overflow.
</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">
<strong>This is the third item's accordion body.</strong> It is hidden by
default, until
the collapse plugin adds the appropriate classes that we use to style each
element.
These classes control the overall appearance, as well as the showing and hiding
via CSS
transitions. You can modify any of this with custom CSS or overriding our
default
variables. It's also worth noting that just about any HTML can go within the
<code>.accordion-body</code>, though the transition does limit overflow.
</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">
<strong>This is the first item's accordion body.</strong> It is shown by
default, until
the collapse plugin adds the appropriate classes that we use to style each
element.
These classes control the overall appearance, as well as the showing and hiding
via CSS
transitions. You can modify any of this with custom CSS or overriding our
default
variables. It's also worth noting that just about any HTML can go within the
<code>.accordion-body</code>, though the transition does limit overflow.
</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">
<strong>This is the second item's accordion body.</strong> It is hidden by
default,
until the collapse plugin adds the appropriate classes that we use to style each
element. These classes control the overall appearance, as well as the showing
and hiding
via CSS transitions. You can modify any of this with custom CSS or overriding
our
default variables. It's also worth noting that just about any HTML can go within
the
<code>.accordion-body</code>, though the transition does limit overflow.
</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">
<strong>This is the third item's accordion body.</strong> It is hidden by
default, until
the collapse plugin adds the appropriate classes that we use to style each
element.
These classes control the overall appearance, as well as the showing and hiding
via CSS
transitions. You can modify any of this with custom CSS or overriding our
default
variables. It's also worth noting that just about any HTML can go within the
<code>.accordion-body</code>, though the transition does limit overflow.
</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>Lorem ipsum dolor sit amet consectetur adipisicing elit. Consequuntur magni, nihil consequatur deserunt
quos quaerat odio. Enim adipisci assumenda molestiae? Ea nemo esse optio labore est at harum incidunt
tenetur, earum cupiditate quae? Hic, reprehenderit temporibus blanditiis molestias voluptas veritatis
facere doloribus provident praesentium earum a accusamus quis quod velit et corporis eum aliquam ipsam
fugit unde quas aliquid omnis fugiat. Dicta doloremque sint animi consectetur esse ullam error nemo
earum, ipsa quisquam eos soluta corrupti, delectus dolore. Blanditiis sequi quidem, ea in reiciendis
iure quaerat voluptatum sapiente et quod praesentium veniam, voluptates id ab deleniti ratione
recusandae at unde!</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>