Computer Problems? Computing.Net has over 1,000,000 posts about all things technology related! Over 90% answered within 24 hours! Click here to start participating now! Also, be sure to check out the New User Guide.
Hi mau I am also doing MCA from Ignou. I could solve the problem that you have posted on this site. Here is the solution. You can ask me any problem in shell scripting or in C programing.
---------
clear echo "Enter size of the array" read arsz i=1 while [ $i -le $arsz ] do read x$i let i=i+1 done
i=1 let m=arsz-1 while [ $i -le $m ] do eval a=\$x$i let j=i+1 while [ $j -le $arsz ] do eval b=\$x$j if [ $a = $b ] then eval x$j=0 fi let j=j+1 done let i=i+1 done i=1 echo echo echo echo while [ $i -le $arsz ] do eval m=\$x$i if [ $m != 0 ] then echo $m fi let i=i+1 done echo echo echo echo echo -------
0
Response Number 4
Name: Mr.Crackhead Date: May 20, 2002 at 23:52:08 Pacific
Reply:
wow, your highness, u got anything for me? i like c programming, any demos any source code wanna share with me?
still learning c, need directions. !!!!!!
0
Response Number 5
Name: ashwin pandit Date: July 5, 2002 at 01:41:16 Pacific
Reply:
pls. tell me where to type unix sheel program and what are the system requirements for running a sheel script
Summary: hi, i want full solution of following five as shell programe in unix- 1)to search a number in a given list of numbers. 2) to reverse a seven digit number and find the sum of all the digits. 3)to sort ...
Summary: How to pass the value in interactive mode? Example: when i run a PGP application, its asking message 'Yes' or 'NO'.But i want to pass the value 'YES' in shell Program. please help me .. Thanks ...
Summary: I'm trying to compose a unix shell program which compares files performing a diff command on edited versions of them and counting the number of lines in the output of the diff command. Basically this ...