start new:
tmux
start new with session name:
tmux new -s myname
Prereq:
apt-get install zsh
apt-get install git-coreGetting zsh to work in ubuntu is weird, since sh does not understand the source command. So, you do this to install zsh
wget https://github.com/robbyrussell/oh-my-zsh/raw/master/tools/install.sh -O - | zsh
| /** Divide : Partition the array A[low....high] into two sub-arrays | |
| * A[low....j-1] and A[j+1...high] such that each element | |
| * of A[low....j-1] is less than or equal to A[j], which | |
| * in turn is is less than or equal to A[j+1...high]. Compute | |
| * the index j as part of this partitioning procedure. | |
| * Conquer : Sort the two sub-arrays A[low....j-1] and A[j+1....high] | |
| * by recursive calls to quicksort | |
| **/ | |
| #include<stdio.h> |