-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCO3.html
More file actions
56 lines (49 loc) · 1.59 KB
/
CO3.html
File metadata and controls
56 lines (49 loc) · 1.59 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>CO-3</title>
<link rel="stylesheet" href="CO3.css">
</head>
<body>
<p id="one">CO-3 Course Outcome: </p>
<p id="two">Develop and apply the CRUD Operations on Arrays </p>
<p>
<div class="contents">
<p id="three"> CO3 Contents at a glance</p>
<ol>
<li>Data types</li>
<ol>
<li>char pointer</li>
</ol>
<li>Command line arguments</li>
<li>Strings and String library</li>
<li>1-Dimention Arrays</li>
<ol>
<li>Creation</li>
<li>Insertion</li>
</ol>
<li>Sorting an Array</li>
<ol>
<li>Bubble Sort</li>
</ol>
<li>Searching for an element in an Array</li>
<ol>
<li>Linear Search</li>
<li>Binary Search</li>
</ol>
<li>Dynamic memory allocation</li>
<li>2-Dimentional Arrays</li>
<ol>
<li>Creation</li>
<li>Insertion</li>
<li>Matrix Creation and Insertion</li>
</ol>
<li>Matrix Algebra</li>
</ol>
</div>
</p>
</body>
</html>