About Me
- I speak fluent C, but can also speak...
- I am passionate about free/open-source software.
- C++ code makes me want to SIGKILL myself.
#include <stdio.h>
#include <stdlib.h>
#define LANG_LEN 13
#define LANG_AMOUNT 2
char languages[LANG_LEN] = "EGnegrlmiasnh";
char i_speak[LANG_AMOUNT][LANG_LEN];
int main(void) {
int i = 0;
while (languages[i] != '\0') {
if (i % 2 == 0) {
i_speak[0][i / 2] = languages[i];
} else {
i_speak[1][i / 2] = languages[i];
}
++i;
}
i_speak[0][i / 2 + 1] = '\0';
i_speak[1][i / 2] = '\0';
printf(" %s and a little bit of %s.\n", i_speak[0], i_speak[1]);
return EXIT_SUCCESS;
}
Hobbies:
- Programming
- Learning German (Oktoberfest)
- Going outside (rarely)
Writing blogs- Procrastinating
Skills:
- Game Development in C
- Software Development in C
- Going out for walks
- Writing (in C)
Favourite Games:
- Mother 3
- Final Fantasy VII
- Cave Story
Get in touch
If you'd like to get in touch you can find my information on the contact page.