skip to main
|
skip to sidebar
Pages
Home
C Language
Unix
HTML & Javascript
JAVA
Android
PhP
C++
Mobile Info
Contact Us
Subscribe:
Computer Programing Languages
Blog Archive
▼
2012
(113)
►
July
(100)
▼
June
(13)
java project : login page
Unix shellscript
how to create a bounced mail handler.
PhP Application Source Code
Android Application Program
Javascript Code: Make your scrollbar colorful
G.T.U Sem 4 FON 's Practical Programs
Javascript Code: Google search on web
Game Code IN C Language.
Html Code: Rain on page
How to get ip address use of C program???
C program to shutdown or turn off computer
C Language Basic Program code
Tuesday, 19 June 2012
G.T.U Sem 4 FON 's Practical Programs
Download all gtu Fon practical programs ..
To download program
Click Here...
0 comments:
Post a Comment
Newer Post
Older Post
Home
Subscribe to:
Post Comments (Atom)
Followers
Search This Blog
Program worlds. Powered by
Blogger
.
Popular Posts
Write a shell script to check whether a given number is prime or not.
echo "Enter a number: " read num i=2 f=0 while [ $i -le `expr $num / 2` ] do if [ `expr $num % $i` -eq 0 ] then f=1 fi i=`expr $i...
Write a shell script to check whether a given number is an Armstrong number or not.
echo "Enter a number: " read c x=$c sum=0 r=0 n=0 while [ $x -gt 0 ] do r=`expr $x % 10` n=`expr $r \* $r \* $r` sum=...
Write a shell script to find the sum of the first n numbers.
echo "Enter a number: " read num i=1 sum=0 while [ $i -le $num ] do sum=`expr $sum + $i` i=`expr $i + 1` done echo "The sum ...
Write a shell script to find the simple interest.
Script-3 echo "Enter the Principle Amount: " read p echo "Enter the rate of interest: " read r echo "Enter the num...
Find Basic Salary,Hra,DA, And Calculate the Net Salary.
echo "Enter Basic Salary: " read b hra=0 da=0 if [ $b -gt 1500 ] then hra=500 da=`expr $b \* 98 / 100` else hra=`expr $b \* 10 / ...
Write a shell script to find whether a given number is even or odd.
Script-4 read num if [ `expr $num % 2` -eq 0 ] then echo "$num is Even." else echo "$num is Odd." fi --------------...
Write a shell script to find whether a given year(4 digits)is leap year or not.
echo "Enter the year in 4 digits: " read num if [ $num -ge 1000 -a $num -le 9999 ] then if [ `expr $num % 4` -eq 0 ] then echo ...
G.T.U Sem 4 FON 's Practical Programs
Download all gtu Fon practical programs .. To download program Click Here...
c program to print patterns of numbers and stars
These program prints various different patterns of numbers and stars. These codes illustrate how to cre...
data analysis library
/************************************************************************* * Compilation: javac StdStats.java * Exe...
0 comments:
Post a Comment