Writing your own "print" function
It won t be a fully functioning printf function like the one from Glibc. it will only print a single argument and won t accepts arbitrary arguments. that s why I called it print instead of printf so no formatting is happening :) I still remember when I was learning C language at my university I wanted to do everything by myself eg, making my own printf, scanf etc without relying on Glibc, at that…