ANSI C
The native language of Unix.
In the past I have only ever edited C, and never written much from scratch. Lately, since I’ve been targeting older computers, I’ve been writing more and more of it. I am still not very good at programming in C.
#include <stdio.h>
int
main()
{
printf("Hello there.\n");
return 0;
}
Bookmarks
Notes that other folks have written on C programming.