-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
125 lines (118 loc) · 5.66 KB
/
index.html
File metadata and controls
125 lines (118 loc) · 5.66 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>C-Example Repository | C Projects by Bocaletto Luca</title>
<meta name="description" content="C-Example repository on GitHub by Bocaletto Luca. Explore a collection of C programming projects with detailed examples and documentation.">
<meta name="keywords" content="C, C programming, projects, GitHub, examples, Bocaletto Luca, C-Example">
<meta name="author" content="Bocaletto Luca">
<!-- Open Graph / Facebook -->
<meta property="og:title" content="C-Example Repository">
<meta property="og:description" content="Explore a collection of C programming projects with detailed examples and documentation by Bocaletto Luca.">
<meta property="og:type" content="website">
<meta property="og:url" content="https://github.com/bocaletto-luca/C-Example">
<!-- If you have an image for Open Graph. Replace IMAGE_URL_HERE with the actual URL if available -->
<meta property="og:image" content="IMAGE_URL_HERE">
<!-- Twitter -->
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:title" content="C-Example Repository">
<meta name="twitter:description" content="Explore a collection of C programming projects with detailed examples and documentation by Bocaletto Luca.">
<meta name="twitter:image" content="IMAGE_URL_HERE">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/8.0.1/normalize.min.css">
<style>
body {
font-family: Arial, sans-serif;
background-color: #f4f4f4;
color: #333;
margin: 0;
padding: 0;
}
.container {
max-width: 800px;
margin: 20px auto;
background: #fff;
padding: 20px;
box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
header, section, footer {
margin-bottom: 20px;
}
h1, h2 {
text-align: center;
}
h1 {
margin-top: 0;
}
ul {
list-style-type: none;
padding: 0;
}
li {
padding: 8px 0;
border-bottom: 1px solid #eaeaea;
}
li:last-child {
border-bottom: none;
}
a {
color: #337ab7;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
footer {
text-align: center;
padding: 10px;
font-size: 0.9em;
color: #777;
margin-top: 20px;
}
</style>
</head>
<body>
<div class="container">
<header>
<h1>C-Example Repository</h1>
<p>Welcome to the C-Example repository by <a href="https://github.com/bocaletto-luca" target="_blank">Bocaletto Luca</a>.</p>
</header>
<section>
<h2>About the Repository</h2>
<p>This repository contains a collection of various C programming projects designed to illustrate fundamental and advanced concepts in C. Each project is developed as a one-page example with detailed inline comments to help you understand the language. All projects are fully documented and serve as practical exercises for learning and improving your skills in C programming.</p>
</section>
<section>
<h2>Projects Included</h2>
<ul>
<li><strong>Hello World Program:</strong> Basic program printing "Hello, World!" to the console.</li>
<li><strong>Simple Calculator:</strong> Command-line calculator performing arithmetic operations.</li>
<li><strong>Temperature Converter:</strong> Convert temperatures between Celsius and Fahrenheit.</li>
<li><strong>Random Number Guessing Game:</strong> Guess the number game with hints.</li>
<li><strong>Fibonacci Sequence Generator:</strong> Generate the Fibonacci sequence.</li>
<li><strong>Prime Number Checker:</strong> Check if a number is prime using optimized loops.</li>
<li><strong>File I/O: Read and Write:</strong> Demonstrates file operations in C.</li>
<li><strong>Array-Based Stack Implementation:</strong> Stack data structure using an array.</li>
<li><strong>Sorting Algorithms:</strong> Bubble Sort and Insertion Sort examples.</li>
<li><strong>Searching Algorithms:</strong> Linear and Binary Search implementation.</li>
<li><strong>Singly Linked List Implementation:</strong> Implement a singly linked list with CRUD operations.</li>
<li><strong>Basic Banking System Simulation:</strong> Simulation of a banking system with persistent storage.</li>
<li><strong>Tic Tac Toe Game:</strong> Text-based Tic Tac Toe game for two players.</li>
<li><strong>Hangman Game:</strong> Classic Hangman game with word guessing logic.</li>
<li><strong>Caesar Cipher for Encryption/Decryption:</strong> Encrypt and decrypt text using a Caesar cipher.</li>
<li><strong>Student Record Management System:</strong> Manage student records with CRUD operations.</li>
<li><strong>Memory Management and Pointer Exercises:</strong> Explore dynamic memory allocation and pointer arithmetic.</li>
<li><strong>Multithreading with POSIX Threads:</strong> Demonstrate multithreading with mutex synchronization.</li>
<li><strong>Basic Chatbot Program:</strong> Interactive chatbot using pattern matching.</li>
<li><strong>Binary Search Tree (BST) Implementation:</strong> Implement a BST with various tree traversals.</li>
</ul>
</section>
<section>
<h2>Additional Projects</h2>
<p>This repository also includes other extra projects that explore various additional topics and techniques in C programming.</p>
</section>
<footer>
<p>© 2025 Bocaletto Luca. Repository: <a href="https://github.com/bocaletto-luca/C-Example" target="_blank">C-Example</a></p>
</footer>
</div>
</body>
</html>