it allocates memory
Go to file
2024-02-13 02:41:49 +00:00
.gitignore HUGE memory optimisations with long long ints 2024-02-12 01:17:10 +00:00
main.c cli args in place of stdin and code separation 2024-02-13 02:41:49 +00:00
README.md update readme 2024-02-12 17:47:33 +00:00

memory allocator

it allocates memory

how to use

  • run the executable
  • enter how much memory you want to allocate - i.e. "1g" = 1 GiB = 1073741824 bytes - the limit is how much memory you have...or more. your funeral.
  • confirm (y)
  • wait for the program to allocate the memory
  • your memory is allocated
  • press ENTER or CTRL+C to free the memory and exit the program
  • ???
  • profit

how to compile

  • get a c compiler (i use gcc)
  • gcc -o ./allocatememory -O2 ./main.c
  • ???
  • profit

why

i was bored