-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCI.html
More file actions
51 lines (49 loc) · 2.54 KB
/
Copy pathCI.html
File metadata and controls
51 lines (49 loc) · 2.54 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Course Details - CODEIN Academy</title>
<link rel="stylesheet" href="Course.css" />
</head>
<body>
<div class="header">
<a href="index.html#courses"><div class="academy-name"><h2>CODEIN</h2></div></a>
<div class="course-title">C Language I ( I1101 )</div>
</div>
<div class="course-box">
<h2>Course Details</h2>
<div class="course-description">
<b>This C Language course teaches the fundamentals of programming through hands-on practice, covering essential concepts like variables, loops, if-else, functions, arrays, and strings.</b>
</div>
<div class="chapter-box">
<div class="chapter-title">Chapter 1: Introduction to C language :</div>
<div class="chapter-detail">Learn the concept of POP (C language).</div>
</div>
<div class="chapter-box">
<div class="chapter-title">Chapter 2: Data types :</div>
<div class="chapter-detail">learn the data types and how to work with them using <code>printf()</code>, and <code>scanf()</code> .</div>
</div>
<div class="chapter-box">
<div class="chapter-title">Chapter 3: IF - Else statment :</div>
<div class="chapter-detail">learn how, when, and where to use if - else with ther conditions .</div>
</div>
<div class="chapter-box">
<div class="chapter-title">Chapter 4: loops :</div>
<div class="chapter-detail">Master the use of loops in C—including for, while, and do-while to execute repetitive tasks efficiently and control program flow .</div>
</div>
<div class="chapter-box">
<div class="chapter-title">Chapter 5: Arrays :</div>
<div class="chapter-detail">Learn how to use arrays in C to store and manipulate collections of data efficiently, including single-dimensional and multi-dimensional arrays .</div>
</div>
<div class="chapter-box">
<div class="chapter-title">Chapter 6: String :</div>
<div class="chapter-detail">Learn how to work with strings in C using character arrays, built-in string functions, and manual manipulation techniques to process and manage text data .</div>
</div>
<div class="chapter-box">
<div class="chapter-title">Chapter 7: Functoins :</div>
<div class="chapter-detail">Understand how to create and use functions in C to write modular, reusable, and organized code by breaking programs into logical blocks , indulging furthermore into the POP concept.</div>
</div>
</div>
</body>
</html>