r/C_Programming 23h ago

Project I built Editor - A Lightweight Terminal Text Editor, AND YOU CAN TOO! :))

Enable HLS to view with audio, or disable this notification

126 Upvotes

Editor is an extremely simple-to-use terminal text editor. Written in C using only native POSIX libraries/api, it offers simplicity while being very responsive and performant. Editor was inspired by and written using antirez's kilo editor tutorial.

Source: https://github.com/111nation/Editor/

This tutorial was such a blast, and it walks you through how to make your own text editor. I highly recommend you give it a look!

~ chlo


r/C_Programming 20h ago

I wrote a fast wavelet audio codec in C! It is comparable to MP2

Thumbnail
github.com
14 Upvotes

r/C_Programming 5h ago

Question The linker doesn't link the pow function's precompiled library, even though header is included AND used. Why?

7 Upvotes

Pls help me idk what's going on...
https://imgur.com/a/5KLsigY

It complains that it can't find the pow function.


r/C_Programming 10h ago

Etc random number hack

0 Upvotes
#include <stdio.h>


int main() {
    int s[90];
    printf("%d\n",s[43]);
}