-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathc.html
42 lines (36 loc) · 1.28 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
<html>
<head>
<link href="https://fonts.googleapis.com/css2?family=Amatic+SC:wght@400;700&family=Open+Sans+Condensed:ital,wght@0,300;1,300&display=swap" rel="stylesheet">
<link rel="stylesheet" href="assets/css/style.css">
<title>JAWS</title>
</head>
<header>
<div id="navbar">
<h1><a href="index.html">Just a Whimsical Spud</a></h1>
<div id="nav-items">
<div class="langnav"><a href="java.html">Java</a></div>
<div class="langnav"><a href="c.html">C</a></div>
</div>
</div>
</header>
<body>
<div class="lang-main">
<div class="progs">
<h3>C</h3>
<div class="progs-content">
<a href="helloworldc.html">Hello, World!</a> <br>
<strike><a href="#">Pointers (In Progress)</a> </strike><br>
<strike><a href="#">Structs (In Progress)</a> </strike><br>
</div>
</div>
<div class="about">
<p>
C was developed by Dennis Ritchie between 1969 and 1973 at Bell Labs.
C is thus named because there was already a pre-existing language "B," from which many of C's characteristics were derived.
It compiles to Assembly and is considered a portable, fast, and efficient language.
<br>
</p>
</div>
</div>
</body>
</html>