/Operating_Systems

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.

Primary LanguageC

Operating Systems - CS F372

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.

How to execute ?

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