-
Notifications
You must be signed in to change notification settings - Fork 0
/
Page1.html
60 lines (60 loc) · 2.81 KB
/
Page1.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="Styles.css">
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"></script>
<title>C-Tutorial</title>
</head>
<body>
<nav class="navbar navbar-expand-lg navbar-light bg-light">
<div class="container-fluid">
<a class="navbar-brand" href="HomePage.html">Home</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarNav" aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNav">
<ul class="navbar-nav">
<li class="nav-item">
<a class="nav-link" href="Page1.html">C-Tutorial</a>
</li>
<li class="nav-item">
<a class="nav-link" href="Page2.html">Cpp-Tutorial</a>
</li>
<li class="nav-item">
<a class="nav-link" href="Page3.html">Java-Tutorial</a>
</li>
<li class="nav-item">
<a class="nav-link" href="Page4.html">Python-Tutorial</a>
</li>
</ul>
</div>
</div>
</nav>
<div class="container">
<h1>C</h1>
<p>C is a general-purpose, procedural, high-level programming language used in the development of computer software and applications, system programming, games, and more.
<ul type="disc">
<li>C language was developed by Dennis M. Ritchie at the Bell Telephone Laboratories in 1972.</li>
<li>It is a powerful and flexible language which was first developed for the programming of the UNIX operating System.</li>
<li>C is one of the most widely used programming languages.
</li>
<li> C programming language — often referred to as the “mother of all programming languages”</li>
<li> C is known for its simplicity of expression, compactness of code, and wide range of applicability.</li>
</ul>
<h1>C Syntax</h1>
<p>We created a C file called helloworld.c, and we used the following code to print "Hello World" to the screen:</p>
<pre><code>printf("Hello, World!\n");</code></pre>
<h2>C Data types</h2>
<p>
<ul>
<li>Data Types: Primitive data types are the most basic data types that are used for representing simple values such as integers, float, characters, etc.</li>
<li>User Defined Data Types: The user-defined data types are defined by the user himself.</li>
<li>Derived Types: The data types that are derived from the primitive or built-in datatypes are referred to as Derived Data Types.</li>
</ul>
</p>
</p>
</body>
</html>