-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCII.html
More file actions
47 lines (45 loc) · 2.53 KB
/
Copy pathCII.html
File metadata and controls
47 lines (45 loc) · 2.53 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Course Details</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 II ( I2204 ) </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 Recursion, Pointers, Structures, linked-list, and Files .</b>
</div>
<div class="chapter-box">
<div class="chapter-title">Chapter 1: Review (Arrays(1D,2D), Strings, and Functions) :</div>
<div class="chapter-detail">Review the concept of the arrays first and secound dimantion + Strings + Functions .</div>
</div>
<div class="chapter-box">
<div class="chapter-title">Chapter 2: Recursion :</div>
<div class="chapter-detail">Explore recursion in C to solve problems by having functions call themselves, with a focus on base cases, stack behavior, and practical examples like factorials and Fibonacci sequences .</div>
</div>
<div class="chapter-box">
<div class="chapter-title">Chapter 3: Pointers :</div>
<div class="chapter-detail">Understand pointers in C to directly access and manipulate memory, enabling powerful features like dynamic memory allocation, array handling, and efficient function arguments .</div>
</div>
<div class="chapter-box">
<div class="chapter-title">Chapter 4: Structures :</div>
<div class="chapter-detail">Learn how to use structures in C to group related variables of different data types under one name, enabling the creation of complex and organized data models .</div>
</div>
<div class="chapter-box">
<div class="chapter-title">Chapter 5: linked-list :</div>
<div class="chapter-detail">Discover how to implement and manage linked lists in C to create dynamic data structures that allow efficient insertion, deletion, and traversal of elements in memory .</div>
</div>
<div class="chapter-box">
<div class="chapter-title">Chapter 6: Files :</div>
<div class="chapter-detail">Learn how to perform file handling in C to read from, write to, and manage external files using standard I/O functions, enabling data storage and retrieval beyond program execution .</div>
</div>
</div>
</body>
</html>