The repo contains codes written in C as a part of the course Operating Systems at BITS Pilani. Codes are mainly about system calls in UNIX OS.
Any file can be compiled as
gcc -o <filename>.exe <filename>.c // windows
gcc -o <filename>.out <filename>.c // Linux/Ubuntu
and to run
./<filename>.exe // windows
./<filename>.out // Linux/Ubuntu