December 2016 - COFPROG

Revese String Shell Scripting Linux

Revese String Shell Scripting Linux #!/bin/bash var1=$1 length=`echo ${#var1}` while [ $length -ne 0 ] do temp=$temp`echo $var1 | ...
Read More

Child Parent Programing Basics Linux OS Programing

Create a program to demonstrate 5 child processes having common parent process.    #include<stdio.h> #include<unistd.h>...
Read More

List of Internal Commands for linux:

List of Internal Commands for linux: alias:  This command allows you to define commands of your own, or replace existing ones. For examp...
Read More

Check Your Processor capability using this Simple c Program [Linux]

Test your computer capability to findout how many processes it can hold or accomodate  #include<stdio.h> #include<unistd.h&...
Read More

Linux Thread programming Basics

Write a c program, create a global variable and try to increment its value for child & parent #include<stdio.h> #include...
Read More