4
galena
5y

Anyone got some small interesting C project ideas?

Comments
  • 2
    Can u read C codes others wrote ?
  • 3
    #include <stdio.h>
    int main(){ printf(“Hi”);return0; }
  • 1
    @vane Already done this morning.
  • 1
    @JFK422 So you’re done for today, class dismissed.
  • 0
    Arduino
  • 1
    See how your c code is converted to assebly using gdb .
    That's cool !
  • 1
    DDOS the pentagon?
  • 1
    A raytracer using SIMD instructions
    Or a software rasterizer (with SSE or AVX512 matrices)
    Or a fractal viewer (maybe with SIMD ?)
    Or a better printf (printf sucks, I wonder if it's possible to copy Rusts println! statement) (with some SIMD somewhere because well, why not)
  • 1
    @NSGangster hehe ! Funny !!
  • 1
    Brainfuck interpreter
  • 0
    @MagicSowap Seen Bisqwit write a raytracer in dos. Looks bit too technical to me.
  • 2
    K, so I've ordered like 20 attiny-10 mcu's. Probably going to make a multicore processor out of these written in C. Ill make sure to keep you guys updated.
  • 1
    If you are new to C I would start with known problems. Like writing own sodoku solver or generator.
    You can do some fun stuff with Arduino as mentioned but that is actually C++ (well an odd dialect but still)
  • 0
    Write your resume and have it print right. Great first project
Add Comment