473,420 Members | 3,233 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,420 software developers and data experts.

Sorry for the NOOB question..

I'm just starting C and haven't done programming for a few
years...could you guys please take a look at this? Thanks for your
time!

I have an input file that looks like:

1.5 2.5 Bob, Joe
4.5 5.5 Bob, Jolene

The first time through the do while loop it works fine but the second
time it looks like this:
Bob, Joe 38.50 12.75 490.88
Jolene 0.00 0.00 0.00
, Janet 0.00 0.00 0.00
- It cuts off last name and all of the floats show up zeros...

command line: ./a.out < inputFile.c

int main()
{
float inHrs, inRt, myTot;
char inName[16];

do {
/* while ( fgets(inName, sizeof(inName), stdin) ) {
*/ scanf ( "%f%f", &inHrs, &inRt );
myTot = inHrs * inRt;

fgets( inName, sizeof( inName ), stdin);

char * p = strchr( inName,'\n' );
if ( p != NULL ){
*p = '\0';
};

printf ( "%s\t%4.2f %4.2f %4.2f \n", inName, inHrs,
inRt, myTot );
inHrs = 0;
inRt = 0;
} while ( fgets(inName, sizeof(inName), stdin) != NULL );
/*
};
*/
return 0;
}

Sep 14 '07 #1
19 1772
On Sep 13, 5:32 pm, Zach Heath <heat...@gmail.comwrote:
I'm just starting C and haven't done programming for a few
years...could you guys please take a look at this? Thanks for your
time!

I have an input file that looks like:

1.5 2.5 Bob, Joe
4.5 5.5 Bob, Jolene

The first time through the do while loop it works fine but the second
time it looks like this:

Bob, Joe 38.50 12.75 490.88
Jolene 0.00 0.00 0.00
, Janet 0.00 0.00 0.00

- It cuts off last name and all of the floats show up zeros...

command line: ./a.out < inputFile.c

int main()
{
float inHrs, inRt, myTot;
char inName[16];

do {
/* while ( fgets(inName, sizeof(inName), stdin) ) {
*/ scanf ( "%f%f", &inHrs, &inRt );
myTot = inHrs * inRt;

fgets( inName, sizeof( inName ), stdin);

char * p = strchr( inName,'\n' );
if ( p != NULL ){
*p = '\0';
};

printf ( "%s\t%4.2f %4.2f %4.2f \n", inName, inHrs,
inRt, myTot );
inHrs = 0;
inRt = 0;
} while ( fgets(inName, sizeof(inName), stdin) != NULL );
/*
};
*/
return 0;

}- Hide quoted text -

- Show quoted text -
No need for three fgets() calls per iteration.
Call fgets() once and then parse the string.
Strtok() is probably fine to peel apart the tokens.
You can also use the is*() functions declared in ctype.h such as
isdigit(), isalpha(), ispunct()

In summary:
1. Read a line of input
2. Separate the contents of the line into components. You could use
strtok() or even sscanf()
3. Process the components
4. Get the next line (if any) and repeat.
Sep 14 '07 #2
On Sep 13, 7:50 pm, user923005 <dcor...@connx.comwrote:
On Sep 13, 5:32 pm, Zach Heath <heat...@gmail.comwrote:
I'm just starting C and haven't done programming for a few
years...could you guys please take a look at this? Thanks for your
time!
I have an input file that looks like:
1.5 2.5 Bob, Joe
4.5 5.5 Bob, Jolene
The first time through the do while loop it works fine but the second
time it looks like this:
Bob, Joe 38.50 12.75 490.88
Jolene 0.00 0.00 0.00
, Janet 0.00 0.00 0.00
- It cuts off last name and all of the floats show up zeros...
command line: ./a.out < inputFile.c
int main()
{
float inHrs, inRt, myTot;
char inName[16];
do {
/* while ( fgets(inName, sizeof(inName), stdin) ) {
*/ scanf ( "%f%f", &inHrs, &inRt );
myTot = inHrs * inRt;
fgets( inName, sizeof( inName ), stdin);
char * p = strchr( inName,'\n' );
if ( p != NULL ){
*p = '\0';
};
printf ( "%s\t%4.2f %4.2f %4.2f \n", inName, inHrs,
inRt, myTot );
inHrs = 0;
inRt = 0;
} while ( fgets(inName, sizeof(inName), stdin) != NULL );
/*
};
*/
return 0;
}- Hide quoted text -
- Show quoted text -

No need for three fgets() calls per iteration.
Call fgets() once and then parse the string.
Strtok() is probably fine to peel apart the tokens.
You can also use the is*() functions declared in ctype.h such as
isdigit(), isalpha(), ispunct()

In summary:
1. Read a line of input
2. Separate the contents of the line into components. You could use
strtok() or even sscanf()
3. Process the components
4. Get the next line (if any) and repeat.
Thanks for the help!

Sep 14 '07 #3
On Fri, 14 Sep 2007 00:32:01 -0000, Zach Heath <he*****@gmail.com>
wrote:
>I'm just starting C and haven't done programming for a few
years...could you guys please take a look at this? Thanks for your
time!

I have an input file that looks like:

1.5 2.5 Bob, Joe
4.5 5.5 Bob, Jolene
Since the only input in your code is from stdin, what does this file
have to do with anything.
>
The first time through the do while loop it works fine but the second
time it looks like this:
Bob, Joe 38.50 12.75 490.88
Jolene 0.00 0.00 0.00
, Janet 0.00 0.00 0.00
- It cuts off last name and all of the floats show up zeros...

command line: ./a.out < inputFile.c

int main()
{
float inHrs, inRt, myTot;
char inName[16];

do {
/* while ( fgets(inName, sizeof(inName), stdin) ) {
*/ scanf ( "%f%f", &inHrs, &inRt );
Exactly what did you type in at this point?
myTot = inHrs * inRt;

fgets( inName, sizeof( inName ), stdin);
And what did you type here?
>
char * p = strchr( inName,'\n' );
if ( p != NULL ){
*p = '\0';
};

printf ( "%s\t%4.2f %4.2f %4.2f \n", inName, inHrs,
inRt, myTot );
inHrs = 0;
inRt = 0;
} while ( fgets(inName, sizeof(inName), stdin) != NULL );
And what did you type here?

I think at least part of your problem is you have inputs without
prompts and lost track of where you were. Did you remember to type a
dummy name for this last fgets (because the real name comes after you
input the figures)?
>/*
};
*/
return 0;
}

Remove del for email
Sep 14 '07 #4
On Thu, 13 Sep 2007 19:38:16 -0700, Barry Schwarz wrote:
On Fri, 14 Sep 2007 00:32:01 -0000, Zach Heath <he*****@gmail.com>
wrote:
>>I have an input file that looks like:

1.5 2.5 Bob, Joe
4.5 5.5 Bob, Jolene

Since the only input in your code is from stdin, what does this file
have to do with anything.
[snip]
>>command line: ./a.out < inputFile.c
[snip]
Exactly what did you type in at this point?
Maybe stdin isn't the keyboard in this program?

--
Army1987 (Replace "NOSPAM" with "email")
If you're sending e-mail from a Windows machine, turn off Microsoft's
stupid “Smart Quotes” feature. This is so you'll avoid sprinkling garbage
characters through your mail. -- Eric S. Raymond and Rick Moen

Sep 14 '07 #5
On Fri, 14 Sep 2007 00:32:01 +0000, Zach Heath wrote:
I have an input file that looks like:

1.5 2.5 Bob, Joe
4.5 5.5 Bob, Jolene

The first time through the do while loop it works fine but the second
time it looks like this:
Bob, Joe 38.50 12.75 490.88
Jolene 0.00 0.00 0.00
, Janet 0.00 0.00 0.00
- It cuts off last name and all of the floats show up zeros...

command line: ./a.out < inputFile.c
[removing comments]
int main()
{
float inHrs, inRt, myTot;
char inName[16];

do {
scanf ( "%f%f", &inHrs, &inRt );
The first time, you read 1.5 and 2.5. All fine.
myTot = inHrs * inRt;

fgets( inName, sizeof( inName ), stdin);
Now you read up to the end of the line. Still fine.
char * p = strchr( inName,'\n' );
if ( p != NULL ){
*p = '\0';
};

printf ( "%s\t%4.2f %4.2f %4.2f \n", inName, inHrs,
inRt, myTot );
inHrs = 0;
inRt = 0;
Here you assign 0 to those.
} while ( fgets(inName, sizeof(inName), stdin) != NULL );
This will read the first 15 characters of the next line. After
them, scanf won't be able to find any float in the input, and will
fail. inHrs and inRt stay zero. myTot becomes 0, and fgets() reads
up to 15 characters till the end of the line, that is "Jolene\n".

You didn't actually mean do { ... } while (fgets(...)), did you?
return 0;
}
--
Army1987 (Replace "NOSPAM" with "email")
If you're sending e-mail from a Windows machine, turn off Microsoft's
stupid “Smart Quotes” feature. This is so you'll avoid sprinkling garbage
characters through your mail. -- Eric S. Raymond and Rick Moen

Sep 14 '07 #6
I wasn't really planning on using a do/while, I wanted to use a while
loop but reached that point where I was trying everything and was
getting frustrated that I couldn't complete such a simple program.

I'm supposed to use stdin, however, it isn't the keyboard. It's
supposed to be the input from the file.

Sep 14 '07 #7
"Lafatus" <he*****@gmail.coma crit dans le message de news:
11**********************@50g2000hsm.googlegroups.c om...
>I wasn't really planning on using a do/while, I wanted to use a while
loop but reached that point where I was trying everything and was
getting frustrated that I couldn't complete such a simple program.
As a rule of thumb, do/while loops are more difficult master than regular
while or far loops.

Your problem can typically be solved with a while loop:

while (fgets(buf, sizeof buf, fp)) {
// parse the buffer and perform appropriate task or report error
}

--
Chqrlie.
Sep 14 '07 #8
"Charlie Gordon" <ne**@chqrlie.orgwrites:
"Lafatus" <he*****@gmail.coma crit dans le message de news:
11**********************@50g2000hsm.googlegroups.c om...
>>I wasn't really planning on using a do/while, I wanted to use a while
loop but reached that point where I was trying everything and was
getting frustrated that I couldn't complete such a simple program.

As a rule of thumb, do/while loops are more difficult master than regular
while or far loops.
Let me guess, "far loops" are a DOS-specific extension that allows the
code for the loop body to span more than one memory segment, right?

(In case anyone is confused, that was a joke; "far loops" is a typo
for "for loops".)

--
Keith Thompson (The_Other_Keith) ks***@mib.org <http://www.ghoti.net/~kst>
San Diego Supercomputer Center <* <http://users.sdsc.edu/~kst>
"We must do something. This is something. Therefore, we must do this."
-- Antony Jay and Jonathan Lynn, "Yes Minister"
Sep 14 '07 #9
Lafatus wrote:
>
I wasn't really planning on using a do/while, I wanted to use a while
loop but reached that point where I was trying everything and was
getting frustrated that I couldn't complete such a simple program.

I'm supposed to use stdin, however, it isn't the keyboard. It's
supposed to be the input from the file.
This is a meaningless message, because Usenet is a 'best efforts'
delivery mechanism, with no guarantees. There is no reason to
assume your readers have ever seen, or ever will see, any previous
messages in the thread. This is why the practice is to always
quote enough of the previous message so that the complete message
makes sense standing by itself.

You should also realize that google is not the messageing system,
it is only a rather poor form of message reader, with which you can
interface via http. It is so bad, and attracts so many Usenet
ignorant newbies, that many readers simply ban all messages
originating on google. So you would be well advised to get a
proper Usenet message reader, such as Thunderbird.

--
Chuck F (cbfalconer at maineline dot net)
Available for consulting/temporary embedded and systems.
<http://cbfalconer.home.att.net>

--
Posted via a free Usenet account from http://www.teranews.com

Sep 14 '07 #10
"Keith Thompson" <ks***@mib.orga crit dans le message de news:
ln************@nuthaus.mib.org...
"Charlie Gordon" <ne**@chqrlie.orgwrites:
>"Lafatus" <he*****@gmail.coma crit dans le message de news:
11**********************@50g2000hsm.googlegroups.c om...
>>>I wasn't really planning on using a do/while, I wanted to use a while
loop but reached that point where I was trying everything and was
getting frustrated that I couldn't complete such a simple program.

As a rule of thumb, do/while loops are more difficult master than regular
while or far loops.

Let me guess, "far loops" are a DOS-specific extension that allows the
code for the loop body to span more than one memory segment, right?
You too remember the Pharlap days ;-)
(In case anyone is confused, that was a joke; "far loops" is a typo
for "for loops".)
yes, many typos in this post (un loup)

As a rule of thumb, do/while loops are more difficult to master than regular
while or for loops.

--
Chqrlie.
Sep 14 '07 #11
CBFalconer <cb********@yahoo.comwrites:
[...]
You should also realize that google is not the messageing system,
it is only a rather poor form of message reader, with which you can
interface via http. It is so bad, and attracts so many Usenet
ignorant newbies, that many readers simply ban all messages
originating on google. So you would be well advised to get a
proper Usenet message reader, such as Thunderbird.
That's a trifle overstated. It is possible to post properly to Usenet
using Google Groups. (But I think the folks who manage to do so are
mostly people who have used real newsreaders in the past.)

The previous poster erred in posting a followup with no context, but
that's not Google's fault; the misfeature that encouraged this was
corrected some time ago, and it's a mistake that can easily be made
with a real newsreader as well.

See <http://cfaj.freeshell.org/google/>.

--
Keith Thompson (The_Other_Keith) ks***@mib.org <http://www.ghoti.net/~kst>
San Diego Supercomputer Center <* <http://users.sdsc.edu/~kst>
"We must do something. This is something. Therefore, we must do this."
-- Antony Jay and Jonathan Lynn, "Yes Minister"
Sep 14 '07 #12
Keith Thompson wrote:
CBFalconer <cb********@yahoo.comwrites:
[...]
>You should also realize that google is not the messageing system,
it is only a rather poor form of message reader, with which you
can interface via http. It is so bad, and attracts so many Usenet
ignorant newbies, that many readers simply ban all messages
originating on google. So you would be well advised to get a
proper Usenet message reader, such as Thunderbird.

That's a trifle overstated. It is possible to post properly to
Usenet using Google Groups. (But I think the folks who manage to
do so are mostly people who have used real newsreaders in the past.)
But finding out how to post properly through Google will not get
anyone past the traps set to eliminate all google posters. A
proper newsreader will.

--
Chuck F (cbfalconer at maineline dot net)
Available for consulting/temporary embedded and systems.
<http://cbfalconer.home.att.net>

--
Posted via a free Usenet account from http://www.teranews.com

Sep 15 '07 #13
Charlie Gordon wrote:
>
.... snip much banditry ...
>
yes, many typos in this post (un loup)

As a rule of thumb, do/while loops are more difficult to master
than regular while or for loops.
Why should you think that? "do { something() } while(foo);" is no
more complex than "while (foo) {something())". The only difference
is that the foo test is applied after execution in the do/while
loop, and before execution in the while loop.

--
Chuck F (cbfalconer at maineline dot net)
Available for consulting/temporary embedded and systems.
<http://cbfalconer.home.att.net>

--
Posted via a free Usenet account from http://www.teranews.com

Sep 15 '07 #14
"CBFalconer" <cb********@yahoo.coma crit dans le message de news:
46***************@yahoo.com...
Charlie Gordon wrote:
>>
... snip much banditry ...
>>
yes, many typos in this post (un loup)

As a rule of thumb, do/while loops are more difficult to master
than regular while or for loops.

Why should you think that? "do { something() } while(foo);" is no
more complex than "while (foo) {something())". The only difference
is that the foo test is applied after execution in the do/while
loop, and before execution in the while loop.
My own experience proofreading millions on lines of C code tells me that.
It is not a matter of complexity... it is just more error prone.
do/while loops written by average programmers tend to have more bugs than
regular for or while loops.
do/while loops produced by newbies tend to be always wrong.
A great classic is this:

int c;
/* skip to end of line */
do {
c = getc(fp);
} while (c != '\n');

Of course regular while loops can be bogus too:

while (!feof(fp)) {
fgets(buf, sizeof buf, fp);
/* do something or naught */
}

Please do the test, take any project at random to which you can access the
source code and examine the do/while loops, you will find bugs!

--
Chqrlie
Sep 15 '07 #15
"Charlie Gordon" <ne**@chqrlie.orgwrites:
"CBFalconer" <cb********@yahoo.coma écrit dans le message de news:
46***************@yahoo.com...
>Charlie Gordon wrote:
>>>
... snip much banditry ...
>>>
yes, many typos in this post (un loupé)

As a rule of thumb, do/while loops are more difficult to master
than regular while or for loops.

Why should you think that? "do { something() } while(foo);" is no
more complex than "while (foo) {something())". The only difference
is that the foo test is applied after execution in the do/while
loop, and before execution in the while loop.

My own experience proofreading millions on lines of C code tells me
that.
....and my experience teaching programming leads to the same
conclusion. There seems to be something seductive about do ... while.
So much so that I just dropped the form from lecture notes as soon as
I saw the problem.

It may be that it reads naturally. It might also be that one of the
rare cases when it is correct:

do {
print prompt;
get reply;
} while (reply not suitable);

crops up in beginners programs more often than production code and the
idea sticks.

<snip>
A great classic is this:

int c;
/* skip to end of line */
do {
c = getc(fp);
} while (c != '\n');
Yes, but that is not wrong because of the do .. while. You probably
intended to leave out the declaration of c (or at least to add
.... suggesting more intervening code) so that this code comes after
some other input that might already have set c to '\n' (at least that
is the form of this bug I've seen repeatedly in student code).

--
Ben.
Sep 15 '07 #16
"Ben Bacarisse" <be********@bsb.me.uka crit dans le message de news:
87************@bsb.me.uk...
"Charlie Gordon" <ne**@chqrlie.orgwrites:
>"CBFalconer" <cb********@yahoo.coma crit dans le message de news:
46***************@yahoo.com...
>>Charlie Gordon wrote:

... snip much banditry ...

yes, many typos in this post (un loup)

As a rule of thumb, do/while loops are more difficult to master
than regular while or for loops.

Why should you think that? "do { something() } while(foo);" is no
more complex than "while (foo) {something())". The only difference
is that the foo test is applied after execution in the do/while
loop, and before execution in the while loop.

My own experience proofreading millions on lines of C code tells me
that.

...and my experience teaching programming leads to the same
conclusion. There seems to be something seductive about do ... while.
So much so that I just dropped the form from lecture notes as soon as
I saw the problem.
I'm glad to see I'm not alone in the desert.
It may be that it reads naturally. It might also be that one of the
rare cases when it is correct:

do {
print prompt;
get reply;
} while (reply not suitable);

crops up in beginners programs more often than production code and the
idea sticks.

<snip>
>A great classic is this:

int c;
/* skip to end of line */
do {
c = getc(fp);
} while (c != '\n');

Yes, but that is not wrong because of the do .. while. You probably
intended to leave out the declaration of c (or at least to add
... suggesting more intervening code) so that this code comes after
some other input that might already have set c to '\n' (at least that
is the form of this bug I've seen repeatedly in student code).
That's a good point, but there is worse: this loop will run forever if the
stream ends without a new-line.
The classic idiom is safer:

while ((c = getc(fp)) != EOF && c != '\n')
continue;

or if EOF is a condition worth reporting:

while ((c = getc(fp)) != '\n') {
if (c == EOF) {
report_error("unexpected end of file);
break;
}
}

For some reason, people tend to overlook special cases when they program
even the simplest tasks with do/while loops.

--
Chqrlie.
Sep 15 '07 #17
Ben Bacarisse <be********@bsb.me.ukwrites:
"Charlie Gordon" <ne**@chqrlie.orgwrites:
>"CBFalconer" <cb********@yahoo.coma crit dans le message de news:
46***************@yahoo.com...
>>Charlie Gordon wrote:

... snip much banditry ...

yes, many typos in this post (un loup)

As a rule of thumb, do/while loops are more difficult to master
than regular while or for loops.

Why should you think that? "do { something() } while(foo);" is no
more complex than "while (foo) {something())". The only difference
is that the foo test is applied after execution in the do/while
loop, and before execution in the while loop.

My own experience proofreading millions on lines of C code tells me
that.

...and my experience teaching programming leads to the same
conclusion. There seems to be something seductive about do ... while.
So much so that I just dropped the form from lecture notes as soon as
I saw the problem.
[...]

I learned Pascal before I learned C. In Pascal, I used
REPEAT
...
UNTIL <condition>;
(similar to C's do-while) much more than I used
WHILE <conditionDO
BEGIN
...
END;

In C, I think the last time I used a do-while loop was in my IOCCC
entry.

Pascal's I/O model, unlike C's, encourages test-at-the-bottom loops.
(Well, C's I/O model seems to encourage such loops too, but not in
correct code.)

--
Keith Thompson (The_Other_Keith) ks***@mib.org <http://www.ghoti.net/~kst>
San Diego Supercomputer Center <* <http://users.sdsc.edu/~kst>
"We must do something. This is something. Therefore, we must do this."
-- Antony Jay and Jonathan Lynn, "Yes Minister"
Sep 15 '07 #18
On Sep 15, 1:10 pm, Keith Thompson <ks...@mib.orgwrote:
Ben Bacarisse <ben.use...@bsb.me.ukwrites:
"Charlie Gordon" <n...@chqrlie.orgwrites:
"CBFalconer" <cbfalco...@yahoo.coma crit dans le message de news:
46EB2D39.3E79C...@yahoo.com...
Charlie Gordon wrote:
>... snip much banditry ...
>>yes, many typos in this post (un loup)
>>As a rule of thumb, do/while loops are more difficult to master
than regular while or for loops.
>Why should you think that? "do { something() } while(foo);" is no
more complex than "while (foo) {something())". The only difference
is that the foo test is applied after execution in the do/while
loop, and before execution in the while loop.
My own experience proofreading millions on lines of C code tells me
that.
...and my experience teaching programming leads to the same
conclusion. There seems to be something seductive about do ... while.
So much so that I just dropped the form from lecture notes as soon as
I saw the problem.

[...]

I learned Pascal before I learned C. In Pascal, I used
REPEAT
...
UNTIL <condition>;
(similar to C's do-while) much more than I used
WHILE <conditionDO
BEGIN
...
END;

In C, I think the last time I used a do-while loop was in my IOCCC
entry.

Pascal's I/O model, unlike C's, encourages test-at-the-bottom loops.
(Well, C's I/O model seems to encourage such loops too, but not in
correct code.)
To me, the choice is clear:

1. If you always want to perform the code _at least_ once, then use
do {} while(cond);
2. If you may not want to perform the code even one time (because
cond is false), then use while (cond) {} ;

I don't see any reason why one is easier or harder to understand than
the other. To me the complexity is identical.

Sep 17 '07 #19
On Sep 15, 1:10 pm, Keith Thompson <ks...@mib.orgwrote:
>Ben Bacarisse <ben.use...@bsb.me.ukwrites:
>>"Charlie Gordon" <n...@chqrlie.orgwrites:
"CBFalconer" <cbfalco...@yahoo.coma crit dans le message de news:
46EB2D39.3E79C...@yahoo.com...
Charlie Gordon wrote:
>>
>As a rule of thumb, do/while loops are more difficult to master
>than regular while or for loops.
>>>>Why should you think that? "do { something() } while(foo);" is no
more complex than "while (foo) {something())". The only difference
is that the foo test is applied after execution in the do/while
loop, and before execution in the while loop.
>>>My own experience proofreading millions on lines of C code tells me
that.
>>...and my experience teaching programming leads to the same
conclusion. There seems to be something seductive about do ... while.
So much so that I just dropped the form from lecture notes as soon as
I saw the problem.

[...]

I learned Pascal before I learned C. In Pascal, I used
REPEAT
...
UNTIL <condition>;
(similar to C's do-while) much more than I used
WHILE <conditionDO
BEGIN
...
END;

In C, I think the last time I used a do-while loop was in my IOCCC
entry.

Pascal's I/O model, unlike C's, encourages test-at-the-bottom loops.
(Well, C's I/O model seems to encourage such loops too, but not in
correct code.)

To me, the choice is clear:

1. If you always want to perform the code _at least_ once, then use
do {} while(cond);
2. If you may not want to perform the code even one time (because
cond is false), then use while (cond) {} ;

I don't see any reason why one is easier or harder to understand than
the other. To me the complexity is identical.
The debate is not so simple.
The example I gave is typical of erroneous uses do/while:

people write

do {
operation;
maybe_more_operations;
} while (cond);

where they should write

while (operation, cond && other_cond) {
maybe_more_operations;
}

or

for (;;) {
operation;
if (!cond)
break;
if (!other_cond)
break;
}

definitely the do/while *seems* simpler and more straightforward, but
it tends to be bogus with conditions ignored or tested at the wrong
place.

--
Chqrlie.
Sep 18 '07 #20

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

1
by: Dave Williams | last post by:
First off...total noob to VB. So far have learned a lot in 1.5 days and feel fairly comfortable at throwing screens up. However, I want to start writing forms that revolve around an access...
10
by: Matt Hollingsworth | last post by:
Hello, Very new to python, so a noob question. When I've written stuff in JavaScript or MEL in the past, I've always adopted the variable naming convention of using a $ as the first character...
1
by: davestrike | last post by:
I am a noob to sql and asp programming. I am working on a db for the gaming squad I am a member of. One of the pages I created is a roster list of all the squad members. Part of this roster is...
8
by: Ivan Shevanski | last post by:
Alright heres another noob question for everyone. Alright, say I have a menu like this. print "1. . .Start" print "2. . .End" choice1 = raw_input("> ") and then I had this to determine what...
2
by: Dan McCollick | last post by:
Hi All, Noob question that I can not seem to figure out: I am trying to implement a screenscraper to pull data from two seperate websites, here is some test code so far: public static void...
0
by: AndyW | last post by:
Hey folks. I am trying to get a soap wsdl service working and have a bit of a noob php programming question for it. I'm using PHP 5.x btw. I have written a soap server that contains a...
4
by: jobs | last post by:
1. How do I pass a subroutine a reference of an object? For example I have variable datef type datetime. I want to pass to pass datef the variable, not it's value to the sub? 2. In ADO.NET,...
1
by: Ray Buck | last post by:
I've been trying to install Mailman, which requires a newer version of the Python language compiler (p-code generator?) than the one I currently have on my linux webserver/gateway box. It's...
6
by: Lang Murphy | last post by:
I'm baaaaack... some of you answered a question I had last week. Only problem is: I'm a dope who doesn't understand most of what y'all posted. Raw noob when it comes to .Net and C#. So I'm going...
1
by: SCRIPT KEEPER | last post by:
Hello, I am a complete noob and just starting off with csharp so I apologize for my basic question. I am wanting to start powershell from inside a batch script and then to pass the powershell args...
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development projectplanning, coding, testing,...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.