Skip to content

Instantly share code, notes, and snippets.

View rlapz's full-sized avatar
👀

Arthur Lapz rlapz

👀
View GitHub Profile
#include <errno.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
/* WARNING!
*
* Horrible linked list :p
*/
@rlapz
rlapz / hello.c
Last active May 31, 2021 22:40
Hello world example in C
#include <stdio.h>
int
main(void)
{
puts("Hello World!");
return 0;
}