This repository contains various C programs and scripts related to the Linux operating system, demonstrating key concepts such as process management, memory allocation, file handling, and system calls.
pid_t pid = fork();
if(pid == 0){
sleep(5);
printf("Don't leave me orphan :(\n");
}
else {
printf("Sorry kid, it isn't personal\n");
exit(0);
}