-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsample8.html
More file actions
57 lines (55 loc) · 2.07 KB
/
Copy pathsample8.html
File metadata and controls
57 lines (55 loc) · 2.07 KB
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
<!DOCTYPE html>
<html>
<!-- Settings of the HTML document -->
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Deal With C++</title>
<link rel="stylesheet" href="stylesheets/stylesheet8.css" />
<link rel="stylesheet" href="stylesheets/responsive.css" />
</head>
<body>
<!-- Header -->
<header>
<div class="container">
<div class="header-left">
<img class="logo" src="pictures/logo.png"/>
</div>
<span class="fa fa-bars menu-icon"></span>
<div class="header-right">
<a href="sample.html">Home</a>
</div>
</div>
</header>
<!-- Top -->
<div class="top-wrapper">
<div class="container">
<h2><u>STANDARD LIBRARY AND HEADER FILES</u></h2>
<br><br>
<p><b>1. stdio.h</b> This header file defines types and macros needed for the standard I/O package. </p><br><br>
<p><b>2. string.h</b> This header file declares various string manipulation and memory manipulation routines.</p><br><br>
<p><b>3. math.h</b> This header file declares various math functions and math error handlers.</p><br><br>
<p><b>4. stdlib.h</b> This header file declares several commonly used routines like conversion routines,search/sort routines, and other miscellaneous things.</p><br><br>
<p><b>5. iostream.h</b> This header file declares basic C++ stream I/O routines.<p><br><br>
<p><b>6. iomanip.h</b> This header file declares stream I/O manipulators and contains macros for creating parameterised manipulators</p><br><br>
</div>
</div>
<!-- Lesson -->
<div class="lesson-wrapper">
<div class="container">
</div>
</div>
<!-- Message -->
<div class="message-wrapper">
<div class="container">
</div>
</div>
<!-- Footer -->
<footer>
<div class="container">
<img src="pictures/logo.png" />
<div class="footer-msg">For more details contact- abc@gmail.com</div>
</div>
</footer>
</body>
</html>