Programming Problems
Home
PROGRAMS
DOWNLOAD
ABOUT
CONTACT
DOWNLOAD
NetBeans
Turbo C/C++
8086 emulator
Home
Subscribe to:
Comments (Atom)
Popular Posts
Write a shell script in Linux/Unix to generate Fibonacci series.
tput clear echo enter the range of the fibonacci series---- read n echo ------------------------------------------------- a=0 b...
Write a shell script in Linux/Unix to find out the value of nCr.
clear echo “ Enter values for n & r” read n read r t=0 i=1 a=1 b=1 c=1 d=0 while [ $i –le $n ] do a=`expr $a \* $i` i=`e...