..

heyyy

Welcome to exit0ne’s hecking valid affirming blog

I really don’t know where to even start to be honest. All I know is that I love *nix, programming and music. This blog should be a fun way to keep track of stuffs. Have fun, My games are here btw.

/*
- The best C code ever
- Author ~ exit0ne
- Date ~ Oct 10 2024
*/
#include <stdio.h>

int main(void)
{
   puts("HEYYYYYY CHECK THIS OUT!!!");
   
   /* 
   - This casues a SEGFAULT(crash) 
   - because it is a NULL dereference 
   */
   *(char*)0 = 'L';
   
   return 0;
}