C
C is a programming language designed by Dennis Ritchie at Bell Labs. C is very widely used, straightforward, and can be compiled to a number of platforms and operating systems. C is an imperative language, with a small number of keywords and a large number of mathematical operators. C is also a very low level programming language, which means it can communicate directly with hardware.
- GitHub: https://github.com/topics/c
- Wikipedia: https://en.wikipedia.org/wiki/C_(programming_language)
- Created by: Dennis Ritchie
- Released: 1972
- Related Topics: language,
- Aliases: c-language, c-programming-language, c99, c89, c-ansi, k-and-r,
- Last updated: 2026-07-07 00:05:12 UTC
- JSON Representation
https://github.com/tengge1/full-screen
使用Windows API实现全屏,F1全屏,ESC取消全屏。
c fullscreen tutorials window windowsapi
Last synced: 18 May 2026
https://github.com/akshay-rajan/s1
S1 MCA Coursework
algorithms c css data-structures html javascript php python
Last synced: 30 Jan 2026
https://github.com/blaknite/snek
Snake for the RC2014
c game rc2014 retro snake snake-game z80
Last synced: 23 Jul 2025
https://github.com/franko/libarray
Very simple C library for generic dynamic arrays
Last synced: 01 Sep 2025
https://github.com/alerighi/tinymodbus
A tiny, header-only, portable and compliant Modbus implementation, suitable for embedded systems
c embedded header-only modbus tiny
Last synced: 16 Jan 2026
https://github.com/kamilhan-karaismailoglu/library-automation-with-c
In this project, a library management system will be developed. There are two different modes in the system. Student mode; Login/Logout the student can list the books stored in the system the student can borrow books and return the borrowed book Librarian Mode; Login/logout Listing all books Searching a book Update book information Adding a new book Deleting a book saved in the system After running the program, the user needs to log in to the system. The operations listed above cannot be performed without logging into the system. Login to the system will be done by giving name-surname and password information. The name-surname and password received from the console will be compared with the information in the binary files. When there is a match, the login process will be completed. In the program, 2 separate menus will be displayed to the user. While the processes related to login / logout and termination of the program are displayed in the main menu, the sub-menus will show the menu of actions that can be performed according to the type of user logged in to the system. Book information will be stored in files named book.bin, student information in student.bin, and librarian information in librarian.bin. The information that needs to be updated according to the operations performed will be updated through these files.
c library-automation library-management library-management-system
Last synced: 22 Jun 2026
https://github.com/selma-belhadj/printf
Custom Printf C function implementation
Last synced: 28 Mar 2025
https://github.com/aidinhamedi/advanced-arduino-datalogger
This project is an advanced datalogger that logs temperature, humidity, and air pressure. It uses an Adafruit SHT31 sensor for temperature and humidity, and a BMP180 for air pressure.
arduino arduino-ide arduino-mega bluetooth bmp180 c cpp data-collection datalogger sensors sht31 st7735 tft-display
Last synced: 21 Aug 2025
https://github.com/luickk/tempcachedb
key/val database with focus on temporary ultra fast data storage
c c-library key-value key-value-database key-value-store
Last synced: 11 Jun 2025
https://github.com/29dch/chinesechess
中国象棋------大一做的项目,偶尔看到就传上来了.现在感觉这个项目各方面都可以做得更好.
Last synced: 19 May 2026
https://github.com/f321x/chaincode-exercises
Exercises of the Feb. 2024 Chaincode Labs Bitcoin FOSS developement program.
bitcoin c foss golang lightning open-source python
Last synced: 07 Apr 2026
https://github.com/iammoltony/libmtnlog
Moltony's logging library
c c-library cross-platform library logging
Last synced: 04 Mar 2025
https://github.com/aveek-saha/intal
C library to perform calculations on integers of arbitrary length
arithmetic-computation c c-library karatsuba large-integers
Last synced: 13 Sep 2025
https://github.com/bynect/libbasex
ISO C library for various base encodings
ansi-c base base16 base2 base32 base32hex base58 base64 base64url binary-encoding c c-library c90 data-encoding encoding encodings library static-library
Last synced: 19 May 2026
https://github.com/fulgurcode/systune
SysTune is a lightweight, GTK-based system settings manager for Linux, offering an all-in-one interface for configuring essential system and security settings while remaining independent of any desktop environment.
Last synced: 07 Mar 2026
https://github.com/mazinsw/falconcpp
C++ IDE easy and complete.
c c-plus-plus editor falcon ide
Last synced: 04 Jul 2026
https://github.com/pbrezina/gssapi-auth
Example of authentication using GSSAPI in C
Last synced: 13 Sep 2025
https://github.com/md-mafujul-hasan/program-in-c
These Contain 54 C Programming Language Program that I have done while understanding C-Programming Concepts.
c c-language c-program c-programming c-programming-language open-source opensource programming-exercises
Last synced: 28 Jun 2025
https://github.com/codahiri/clang
C language
c clang compiler gcc-complier markdown programming-language shell
Last synced: 03 Mar 2025
https://github.com/psingh12354/c
Here i upload my C code which i have done
50 c c-programming more practice than
Last synced: 26 Jun 2025
https://github.com/h3ar7b3a7/furtherbacktotheroots
Small applications made while studying C in Harvards cs50 course. An introduction to several concepts of computer programming.
c data-structures memory-management
Last synced: 15 Jun 2025
https://github.com/walid-git/fork-bomb
Simple C program to create infinite number of processes until no more space is available, with redefinition of SIGINT handler to avoid killing with CTRL+C
c cprogramming fork sigint-handler signal-handler signals system-programming
Last synced: 13 Mar 2025
https://github.com/siddhesh-desai/guess-game
Guess the word and number game developed using C.
begineer-friendly begineer-project c game guess-the-number guess-the-word guessing-game
Last synced: 06 Apr 2025
https://github.com/mo7amed-hussein/es-smart-camera-tracker
It provide smart way for camera to track human face
atmega328p bluetooth-module c camera-tracking embedded-c embedded-systems hc-05 practice-project servo-driver servo-motor uart
Last synced: 19 May 2026
https://github.com/jbrosdevelopment/virtualcomputer
This project is a virtual computer that takes a vector of bytes and runs it as instructions. Also included is a complete assembler and compiler.
assembler binary bytes c compiler computer instruction-set-architecture rust vc virtual-computer
Last synced: 05 Jan 2026
https://github.com/myousaf64/push_swap
Push_swap is a an efficient sorting algorithm using two stacks and a limited set of operations. The goal is to sort a given set of integers in ascending order using the fewest possible moves, implementing and optimizing various sorting algorithms to achieve the best performance within specified benchmarks.
algorithms c data-structures programming sorting-algorithms
Last synced: 04 Jul 2026
https://github.com/kazirifatmorshed/programming-in-ansi-c-solutions
Excersise solutions(ONLY: Multiple Choice Questions, Review Questions, Debugging Questions, Interview Questions [PROGRAMMING EXERCISES EXCLUDED] ) for the book "Programming in ANSI C" by E. Balagurusamy (Eight Edition).
c c-programming-language e-balagurusamy programming-in-ansi-c
Last synced: 14 Jun 2025
https://github.com/p32929/mathblitz
Simple math game created using C
c c-plus-plus c-plus-plus-examples c-plus-plus-game c-programming c-programming-game c-programming-language
Last synced: 16 May 2026
https://github.com/amirsorouri00/iust-os-lecture-192
Lecture resources of the OS Course held in fall-2019
c inter-process-communication memory operating-system os proce scheduling thread
Last synced: 20 May 2026
https://github.com/iostapyshyn/gravity
Simulation of Newton's law of universal gravitation.
c glfw gravity newton opengl physics simulation
Last synced: 20 May 2026
https://github.com/jjungminlee/linuxsystemprogramming
2024 Linux System Programming 🐧
Last synced: 20 May 2026
https://github.com/rcarubbi/cansi-datastructures
Data Structure Couse with examples written in C Ansi
binary-search c c-ansi data-structures linked-list
Last synced: 02 Jan 2026
https://github.com/thacuber2a03/made-with-raylib
A simple badge that tells others that your project was made with raylib.
Last synced: 22 Mar 2025
https://github.com/jelhamm/data-link-layer-protocols
"This repository is a comprehensive implementation of data link layer protocols in the field of networking. Also showcases a meticulous approach towards implementing various protocols at the data link layer, enabling developers to understand, experiment."
c cpp datalink datalink-layer frames go-back-n network-layer networking networking-in-c networking-in-cpp physical-layer protocol selective-repeat sliding-window sliding-window-algorithm sliding-window-protocol stopandwait utopian
Last synced: 20 May 2026
https://github.com/montyanderson/construction
:construction: Interface with binary structures in Javascript, built for network protocols.
binary buffer c construction cpp interface javascript network-protocol node
Last synced: 02 Jan 2026
https://github.com/grauho/sdc
A simple tool to convert .safetensor files that include certain large dtypes into ones that don't
ansi-c c c89 c90 c99 cli conversion converter dtype dtypes json safetensors stable-diffusion
Last synced: 02 Jan 2026
https://github.com/dcasella/carrillo-lipman
Carrillo-Lipman algorithm implementation
Last synced: 29 Mar 2025
https://github.com/happyrao78/c-language
C Language Important questions( interview level 3)
Last synced: 29 Mar 2025
https://github.com/saadbazaz/meme-generator-c
A low-level meme generator in the C language
c meme-generator operating-systems posix system-programming
Last synced: 21 Mar 2025
https://github.com/diveshadivarekar/stationary-receipt-c
A simple c program that aids help to create bill receipt and then store it in a text file
Last synced: 17 Mar 2025
https://github.com/alifa98/sultan
The final project of the C programming course. Simple command-line game.
c console game simple-game strategy-game
Last synced: 29 Mar 2025
https://github.com/casperkristiansson/ping-pong-in-c-using-chipkit32-is1200
Ping Pong in C using a chipKIT Uno32 Board. This is a group project in the IS1200 course in Computer Science at KTH.
c chipkit chipkit-platform is1200 kth ping-pong pingpong uno32
Last synced: 17 Jun 2025
https://github.com/clark800/page
minimalist pager (more alternative)
c command-line minimalist pager terminal
Last synced: 20 May 2026
https://github.com/naemazam/hello-world
I don't Know What is Your First Language and Don't Want to know Why You Select it. But As a Programmer i know, The Smile When You run Your First Code. After That We made Thousands of Mistake In our DEV life. We did Debug, Copycat or Googling But never Forget This First 2 Words. Let's Combine Our First Happiness In A single Page.
apache-groovy c dart elixir elm fortran go graphql haskel hello-world hellogithub helloworld helloworld-programs naemazam
Last synced: 08 Apr 2026
https://github.com/rajsoni03/cplusplus-training
C Plus Plus Training Class Codes and Notes
c c-plus-plus core cpp oops-in-cpp
Last synced: 20 May 2026
https://github.com/kientech/data-structures-and-algorithms-specialization
Data Structures and Algorithms Specialization
algorithms c cplusplus data-structures python
Last synced: 22 Mar 2025
https://github.com/urpagin/my-coreutils
Coreutils my way.
c c-language command-line coreutils cross-platform educational file-management file-system linux low-level open-source performance portability posix shell-scripting small-utilities stdio system-programming text-processing unix
Last synced: 25 Jun 2026
https://github.com/azurespheredev/KernelDriver2DrawLine
Enables developer to draw a line with start point and end point.
c cpp gdi hooking kernel wdk windows-10
Last synced: 25 Oct 2025
https://github.com/keepalive555/datastructure
数据结构、算法、一些经典用法的学习示例代码(均由笔者编写并且调试通过)。
Last synced: 22 Mar 2025
https://github.com/briansantoss/libdstructs
A C library implementing the most commonly used data structures: linked lists, stacks, queues, binary trees, hash tables, sets and array lists/vectors.
algorithms-and-data-structures c library linked-list stacks
Last synced: 08 Mar 2026
https://github.com/threadexio/cbundl
webpack but for C code.
build-tool bundle bundler c cpp preprocessing preprocessor
Last synced: 08 Mar 2026
https://github.com/sourhub226/c-cpp-programs
Important C and C++ programs for computer engineers.
ai algorithm-analysis algorithms artificial-intelligence automata c computer-engineering computer-science cpp data-structures dfa education graphics hacktoberfest learning network oop operating-system programming
Last synced: 24 Aug 2025
https://github.com/hadichahine/cest
A traditional unit testing library for C.
c cest tdd test-driven-development testing unit-testing
Last synced: 28 Mar 2025
https://github.com/matheusjohannaraujo/lego_nxt_com_bricxcc_nxc
Códigos para LEGO NXT usando a linguagem NXC no Bricx Command Center
bricxcc c lego lego-mindstorms lego-nxt nxc
Last synced: 07 Jul 2025
https://github.com/spaciouscoder78/unitconversion.hpp
A C++ library containing predefined unit conversion formulas to make your life easier
c cpp header-files unitconversion
Last synced: 07 Oct 2025
https://github.com/jdeokkim/leko
A small block puzzle game demo made with raylib.
c gamedev gnu99 puzzle puzzle-game raylib
Last synced: 21 Apr 2025
https://github.com/hxndev/tcp-2-way-communication
TCP Two-Way Connection
2-way-communication c code tcp tcp-client tcp-server two-way-communication
Last synced: 31 Mar 2025
https://github.com/hxndev/udp-iterative-client-server-to-reverse-a-string
An iterative UDP Server that reverses a string.
c code iterative-server reverse-strings udp udp-client udp-server
Last synced: 31 Mar 2025
https://github.com/0xdaksh/scientific-calculator
School Project for C++ to Make a Scientific-Calculator, allows you to input to retain output.
c c-plus-plus calculator programming-language scientific
Last synced: 07 Oct 2025
https://github.com/paolostivanin/snoop-guard
Receive a notification whenever your webcam and/or your microphone are being used
c microphone notifications privacy webcam
Last synced: 19 Jan 2026
https://github.com/apache/activemq-nms-openwire-generator
Mirror of Apache ActiveMQ NMS OpenWire protocol generator tool
activemq c cplusplus csharp java network-client network-server perl php python ruby
Last synced: 22 Apr 2025
https://github.com/hxndev/tcp-connection-terminates-on-goodbye
TCP Connection between two clients that terminates the connection upon the word "Goodbye".
c code connection goodbye tcp tcp-client tcp-server termination
Last synced: 31 Mar 2025
https://github.com/georgecatalin/learning-c
Code practice from LinkedinLearning course "Learning C" by Dan Gookin
c cprogramming cprogramming-language linkedin-learning
Last synced: 30 May 2026
https://github.com/rtsfred3/pyntegrate
Use of native C code in Python using C Extensions
c c-extensions c-python-extensions cpython python
Last synced: 16 Jul 2025
https://github.com/ZBCMars/UEFIStudy
Here is the code I wrote in the process of learning UEFI and OS. My goal is to write a complete OS Loader to boot the operating system in the U disk.
bios c operating-system uefi uefi-boot uefi-shell
Last synced: 11 Mar 2025
https://github.com/aptpod/apt-peripheral-linux-driver
Device driver for EDGEPLANT USB Peripherals,
Last synced: 14 May 2026
https://github.com/bahamas10/undercurrents
Visualizer made in C and OpenGL and SDL2
Last synced: 08 Oct 2025
https://github.com/sanix-darker/c-starter
A small and lightweight C starter application(Cello, Clib, Unittests, etc...).
c cello clib starter starter-template test
Last synced: 24 Mar 2025
https://github.com/Camroku/Toryus
A hobby operating system project
assembly c operating-system osdev
Last synced: 11 Mar 2025
https://github.com/nivindulakshitha/productivity-suite
Explore interactive C programs!
Last synced: 18 Jun 2026
https://github.com/k4u5h4l/ada-lab-progs
A collection of programs done in ada lab, sem 4.
Last synced: 22 Apr 2025
https://github.com/macmade/c-inheritance
Class inheritance experiments for C.
c class extend inheritance-experiments object-oriented opaque struct
Last synced: 30 Mar 2025
https://github.com/kritagya-web/online_examination_project_cpp
This project is a windows-based application used for taking Exams of multiple subjects.Marks would be calculated automatically after the test finishes. Some modules/ functionalities included are New User Registration, Attempt Test, Results, Contact US, etc.
c cpp online-examination-system test-taking-platform
Last synced: 01 Mar 2025
https://github.com/theo-mestre/c-sfml-static-premake
This repository provides a simple setup to create an C-SFML application using Premake 5.
Last synced: 03 Feb 2026
https://github.com/tdjastrzebski/cppbuild
C/C++ Multi-Step Incremental Build Tool
build build-automation build-tool build-tools c c-plus-plus cli command-line cpp
Last synced: 12 Mar 2026
https://github.com/headblockhead/slab-firmware
Firmware for the core boards of the Slab Keyboard system.
c keyboard pico-sdk slab-keyboard tinyusb
Last synced: 12 Mar 2026
https://github.com/maskedsyntax/sudoku
Terminal based Sudoku game
c cli game java sudoku sudoku-solver terminal
Last synced: 13 Apr 2026
https://github.com/juoelenis/binux
Binux is an Operating System Kernel based on POSIX principles and based some components slightly on the first version of Linux
c cpp ez h kernel mit-license os
Last synced: 12 Apr 2026
https://github.com/pedrozappa/42_fractol
42 Project : Fract'ol
42 42born2code 42cursus c fractol fractol-42 gdb make minilibx
Last synced: 24 Sep 2025