Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/baponkar/learning-c
C Programming Language
https://github.com/baponkar/learning-c
c high-level-programming low-level-programming pointers
Last synced: 9 days ago
JSON representation
C Programming Language
- Host: GitHub
- URL: https://github.com/baponkar/learning-c
- Owner: baponkar
- Created: 2024-08-06T16:02:18.000Z (3 months ago)
- Default Branch: main
- Last Pushed: 2024-08-11T15:25:57.000Z (3 months ago)
- Last Synced: 2024-08-12T09:38:58.479Z (3 months ago)
- Topics: c, high-level-programming, low-level-programming, pointers
- Language: C
- Homepage: https://baponkar.github.io/Learning-C/
- Size: 1.03 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
.typing-container {
width: 100%;
overflow: hidden; /* Ensures the text doesn't wrap */
border-right: 0.15em solid black; /* The cursor effect */
white-space: nowrap; /* Prevents text from wrapping */
margin: 0 auto; /* Center the container */
font-family: monospace; /* Typewriter-like font */
font-size: 24px;
}.typing-text {
display: inline-block;
animation: typing 3.5s steps(30, end), blink 0.75s step-end infinite;
white-space: nowrap;
overflow: hidden;
border-right: 0.15em solid black;
}@keyframes typing {
from { width: 0; }
to { width: 100%; }
}@keyframes blink {
from, to { border-color: transparent; }
50% { border-color: black; }
}[![Home Static Badge](https://img.shields.io/badge/%F0%9F%8F%A0-Home-maker?style=plastic&labelColor=grey&color=black)
](https://baponkar.github.io/Learning-C)# Learning Programming in C
The article is under progress...
![Cover Image](./image/c.png)
Still C is a relevant programming language in computer science. All Operating system, application software and many scientific computational program is written in C. C is fast and low level supporting language so it is popular among the developer.In this repository I have tried to cover all necessary things in details .
Online C Compiler [programiz.com](https://www.programiz.com/c-programming/online-compiler/)
### Chapters
1. [Introduction](./Introduction/Introduction)
2. [Compiler](./Gcc/Gcc)
3. [Hello World](./Hello-World/Hello-World)
4. [Numeric Constants and Variables](./Numeric-Constants-and-Variables/Numeric-Constants-and-Variables)
5. [Comments](./Comments/Comments)
6. [Arithmetic Expression](./Arithmetic-Expression/Arithmetic-Expression)
7. [Input and Output](./Input-and-Output/Input-and-Output)
8. [Conditional Statements](./Conditional-Statements/Conditional-Statements)
9. [Loops](./Loops/Loops)
10. [Arrays](./Arrays/Arrays)
11. [Logical Expression](./Logical-Expression/Logical-Expression)
12. [Functions](./Functions/Functions)
13. [Character and Strings](./Character-and-Strings/Character-and-Strings)
14. [Enumerated Data Type and Stacks](./Enumerated-Data-Type-and-Stacks/Enumerated-Data-Type-and-Stacks)
15. [Structure](./Structure/Structure)
16. [Pointer Data type and its Application](./Pointer-Data-Type-and-its-Application/Pointer-Data-Type-and-its-Application)
17. [Lists and Trees](./Lists-and-Trees/Lists-and-Trees)
18. [Recursion](./Recursion/Recursion)
19. [Bit Level Operations and Applications](./Bit-Level-Operations-and-Applications/Bit-Level-Operations-and-Applications)
20. [Files in C](./Files-in-C/Files-in-C)
21. [Miscellaneous Features of C](./Miscellaneous-Features-of-C/Miscellaneous-Features-of-C)#### Source [code](https://github.com/baponkar/Learning-C/tree/main/src) of some C Programs.
Next
© 2024 Bapon Kar. All rights reserved.