Name: Anonymous 2016-01-08 14:23
https://matt.sh/howto-c
Very good read for anyone that wants to write this outdated language in 2016.
Very good read for anyone that wants to write this outdated language in 2016.
retro home computersAre historical curiosities. I could claim "an independent strong language that need no C" because in the past it was written in assembler and was unportable mess(BASIC - the ultimate language with no C/C++ baggage because at year XXXX it was free of C/C++ code).
Symbolics Pascal
portable assembler.Portability is extremely useful long-term and allows C to outlive architectures - while arch-special snowflakes die with them.
You know the preprocessor is shit, and the hacks people are doing with it are just playing with it for fun.void.h is used in writing real code.
What the fuck are you smoking? Even just looking at the very first benchmark:What are YOU smoking, or rather what are you looking at?
static char mem[~0U];
static size_t nalloc;
void *malloc(size_t n)
{
void *p = mem+nalloc;
nalloc += n;
return p;
}
void free(void *p)
{
// no-op
}
>>11111111111111111111111