Re: how to create symbol table of an assembler

2006-08-18 Thread Owen Cook
Ask a c/c++ mailing list? -- Owen On Sat, 19 Aug 2006, payal sinha wrote: > hi all > > i have to write a code to generate a single pass assembler. apart from > the basic idea of assemblers , i cant proceed any further. > moreover , i would like to know , how to create symbol table , programm

how to create symbol table of an assembler

2006-08-18 Thread payal sinha
hi all i have to write a code to generate a single pass assembler. apart from the basic idea of assemblers , i cant proceed any further. moreover , i would like to know , how to create symbol table , programming language here is c/c++. platform is fedora core 4 kindly reply thanx

Re: Recursive Copy

2006-08-18 Thread anu p
John, "John W. Krahn" <[EMAIL PROTECTED]> wrote: [ Please do not top-post ] anu p wrote: > If you have some time to help me out ... You should post your questions to the mailing list instead of individual subscribers. > I tried a similar example of recursive copy using File::Find, Copy

Re: Recursive Copy

2006-08-18 Thread John W. Krahn
[ Please do not top-post ] anu p wrote: > If you have some time to help me out ... You should post your questions to the mailing list instead of individual subscribers. > I tried a similar example of recursive copy using File::Find, Copy. > I tried to copy all files with extension ".c" to a dire

Re: calculate the value in an array of array

2006-08-18 Thread Dr.Ruud
Dalibor Straka schreef: > chen li: >> @array_of_array=( >> [1,2,3,4,5], >> [1,2,3,4,5], >> [1,2,3,4,5], >> [1,2,3,4,5] >> ) >> >> How do I get the total values for each colume > > it might be smart(depends on utilization) to keep the sum as the 0th >

Re: calculate the value in an array of array

2006-08-18 Thread Dalibor Straka
On Fri, Aug 18, 2006 at 06:29:36AM -0700, chen li wrote: > Dear all, > > I have an array of array look like this: > > @array_of_array=( > > [1,2,3,4,5], > [1,2,3,4,5], > [1,2,3,4,5], > [1,2,3,4,5] > ) > > How do I get the total values for each col

Re: calculate the value in an array of array

2006-08-18 Thread Rob Dixon
chen li wrote: > > I have an array of array look like this: > > @array_of_array=( > > [1,2,3,4,5], > [1,2,3,4,5], > [1,2,3,4,5], > [1,2,3,4,5] > ) > > How do I get the total values for each colume, such as > > $column1=1+1+1+1; > $column2=2+2+2+2; >

Re: Does anyone use LWP anymore??

2006-08-18 Thread Tom Phoenix
On 8/18/06, chris choi <[EMAIL PROTECTED]> wrote: was wondering if using LWP is outdated?? LWP is stable, popular, and in no way outdated. But many things that might have been built with LWP a few years ago are now built with WWW::Mechanize, which itself is built atop LWP. http://search.cp

RE: recusrive listing

2006-08-18 Thread Smith, Derek
-Original Message- From: Ricardo SIGNES [mailto:[EMAIL PROTECTED] Sent: Friday, August 18, 2006 8:58 AM To: beginners@perl.org Subject: Re: recusrive listing * "Smith, Derek" <[EMAIL PROTECTED]> [2006-08-17T10:52:16] > What module would be ideal for getting a recursive listing into an ar

Re: calculate the value in an array of array

2006-08-18 Thread John W. Krahn
chen li wrote: > Dear all, Hello, > I have an array of array look like this: > > @array_of_array=( > > [1,2,3,4,5], > [1,2,3,4,5], > [1,2,3,4,5], > [1,2,3,4,5] > ) > > How do I get the total values for each colume, such as > > $column1=1+1+1+1;

RE: Perl Training

2006-08-18 Thread Barron Snyder \(CE CEN\)
If I were to take a Perl class, I'd love to take it from either http://www.stonehenge.com/ (these are the guys that write many of the books we read) or http://www.bignerdranch.com/ . Barron -Original Message- From: Podikunju, Sajan [mailto:[EMAIL PROTECTED] Sent: Friday, August 18, 2006

Re: recusrive listing

2006-08-18 Thread Ricardo SIGNES
* "Smith, Derek" <[EMAIL PROTECTED]> [2006-08-18T09:30:54] > No period conversion. Typically multiple ??? marks in the English > language has inherited dual meanings: 1) a question and 2) thinking out > loud wanting feedback. Actually, they're typically considered wrong, and to be avoided, which i

Re: Designing forms/tables in CGI

2006-08-18 Thread Mumia W.
On 08/18/2006 08:23 AM, Nath, Alok (STSD) wrote: Hi Guys, My question is can I create more that one form in the same page. Yes If yes , do I need to create separate cgi object for each form or one object for one page is sufficient.How do I design ? Which is advised ? On

Re: calculate the value in an array of array

2006-08-18 Thread Dr.Ruud
chen li schreef: > I have an array of array look like this: > > @array_of_array=( > > [1,2,3,4,5], > [1,2,3,4,5], > [1,2,3,4,5], > [1,2,3,4,5] > ) > > How do I get the total values for each colume #!/usr/bin/perl use warnings ; use strict ; m

Perl Training

2006-08-18 Thread Podikunju, Sajan
Does anyone has a recommendation for a very good perl training center in US Thanks ** This message, including any attachments, contains confidential information intended for a specific individual and purpose, and is protec

RE: calculate the value in an array of array

2006-08-18 Thread Nagasamudram, Prasanna Kumar
-Original Message- From: chen li [mailto:[EMAIL PROTECTED] Sent: Friday, August 18, 2006 7:00 PM To: beginners@perl.org Subject: calculate the value in an array of array Dear all, I have an array of array look like this: @array_of_array=( [1,2,3,4,5], [1,2,3,4

Does anyone use LWP anymore??

2006-08-18 Thread chris choi
Hi I'm new to perl so I don't really know much about CGI, and that stuffanyways I'm learning Perl because I wanted to learn how to program web spiders/robots, and was wondering if using LWP is outdated?? or does anyone else use some other lanuage like C to program Web Spiders?? thanks Chris

calculate the value in an array of array

2006-08-18 Thread chen li
Dear all, I have an array of array look like this: @array_of_array=( [1,2,3,4,5], [1,2,3,4,5], [1,2,3,4,5], [1,2,3,4,5] ) How do I get the total values for each colume, such as $column1=1+1+1+1; $column2=2+2+2+2; $column3=3+3+3+3; ... Thanks,

Designing forms/tables in CGI

2006-08-18 Thread Nath, Alok (STSD)
Hi Guys, My question is can I create more that one form in the same page. If yes , do I need to create separate cgi object for each form or one object for one page is sufficient.How do I design ? Which is advised ? The reason for asking is I have created few table

Re: recusrive listing

2006-08-18 Thread Ricardo SIGNES
* "Smith, Derek" <[EMAIL PROTECTED]> [2006-08-17T10:52:16] > What module would be ideal for getting a recursive listing into an array > or hash? Your code, below, makes it look like you really mean "for getting a recursive directory listing." > I was looking at IO::All Is that a question? D

recusrive listing

2006-08-18 Thread Smith, Derek
What module would be ideal for getting a recursive listing into an array or hash? I was looking at IO::All $io = io('my/directory/'); # Create new directory object @contents = $io->all; # Get all contents of dir @contents = @$io;