473,395 Members | 1,526 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,395 software developers and data experts.

another stupid c bug. (endless for loop)

I was just trying to figure out how some C code worked... I needed to make a
loop to test all possible values for a 16 bit word.

Surprise Surprise... C sucks at it... once again :D lol... C is such a bad
language it amazes me everytime :D

Just look at this shit:

unsigned short int i;

// I set i to a large value so one can see the wrap occuring.
for (i=65500; i<65536; i++)
{
// endless loop
}

for (i=65500; i<=65535; i++)
{
// endless loop
}

for (i=65500; i<65536; ++i)
{
// endless loop
}

for (i=65500; i<=65535; ++i)
{
// endless loop
}

There... I tried out all possibilities...

The original loop was something like:
for (i=0; i<=65535; i++)
{
// endless loop
}

Ha ! C SUCKS BALLS

Man... just a simple pascal loop and I would have been done already.

var
i : word;
for i:=0 to 65535 do
begin

end;

Lol... I don't even have to test that code....

I know 100% sure it will work just fine ;)

With C one never knows lol hahahahaha.

NOW GO FUCK YOURSELF hahahahahaha


Nov 14 '05 #1
30 2139
On Fri, 27 Aug 2004 18:43:23 +0200, "Skybuck Flying"
<no****@hotmail.com> wrote:

I have news for you - it isn't the language that's showing its
stupidity here.

There... I tried out all possibilities...


I would have tried only one - the one that works.

Go troll some other place. If you need a C program, hire a programmer.

--
Al Balmer
Balmer Consulting
re************************@att.net
Nov 14 '05 #2
bad language it amazes me everytime[sic] :D

Just look at this [ profanity removed ]:

unsigned short int i;

// I set i to a large value so one can see the wrap occuring[sic].
for (i=65500; i<65536; i++)
{
// endless loop
} <snip> more horrible code follows.

-----------------------------------------------
From: The Oracle
To: Troll,

Your compiler privileges are hereby revoked.
Come to think of it, so are your text
editor privileges.

You Owe the Oracle an essay on binary
number theory.
------------------------------------------------

This reminds me of the man who took a chain-saw back to return it,
saying that it was the worst machine in the world and took him hours to
cut through a two foot log. The salesman started it up to see what was
wrong and the man yelled "Hey, What's that sound?!"
.................................................. .......... Posted via AtlantisNews - Explore EVERY Newsgroup <
http://www.AtlantisNews.com -- Lightning Fast!! <<
Access to More Content * No Limits * Best Retention <<<

Nov 14 '05 #3

"Alan Balmer" <al******@att.net> wrote in message
news:jq********************************@4ax.com...
On Fri, 27 Aug 2004 18:43:23 +0200, "Skybuck Flying"
<no****@hotmail.com> wrote:

I have news for you - it isn't the language that's showing its
stupidity here.

There... I tried out all possibilities...


I would have tried only one - the one that works.

Go troll some other place. If you need a C program, hire a programmer.

--
Al Balmer
Balmer Consulting
re************************@att.net


Lol

From: Superman
To: The man without a dick

Oh wise one... will you enlighten me with all your wisedom LOL
Nov 14 '05 #4
Skybuck Flying wrote:
I was just trying to figure out how some C code worked... I needed to make a
loop to test all possible values for a 16 bit word.

Surprise Surprise... C sucks at it... once again :D lol... C is such a bad
language it amazes me everytime :D

Just look at this shit:
[progressively worse diatribe snipped]


S.F., I was in the process of writing up some advice you
might have found helpful. But your abusive language offends
me, and I choose not to help offensive people. You will get
no further help from me until and unless your mother teaches
you better behavior. If she fails in this endeavor, I suggest
you follow the final instruction from your own posting.

--
Er*********@sun.com

Nov 14 '05 #5
On Fri, 27 Aug 2004 19:18:04 +0200, "Skybuck Flying"
<no****@hotmail.com> wrote:

Oh wise one... will you enlighten me with all your wisedom LOL


No. Come back when you grow up.

<plonk>

--
Al Balmer
Balmer Consulting
re************************@att.net
Nov 14 '05 #6

"Eric Sosman" <Er*********@sun.com> wrote in message
news:41**************@sun.com...
Skybuck Flying wrote:
I was just trying to figure out how some C code worked... I needed to make a loop to test all possible values for a 16 bit word.

Surprise Surprise... C sucks at it... once again :D lol... C is such a bad language it amazes me everytime :D

Just look at this shit:
> [progressively worse diatribe snipped]
S.F., I was in the process of writing up some advice you
might have found helpful. But your abusive language offends
me, and I choose not to help offensive people. You will get
no further help from me until and unless your mother teaches
you better behavior. If she fails in this endeavor, I suggest
you follow the final instruction from your own posting.


Hahahahahahahahaha too funny.

Like I need help with this... go screw yourself lol hahahah tooo funny.

--
Er*********@sun.com

Nov 14 '05 #7
Skybuck Flying wrote:

I was just trying to figure out how some C code worked... I needed
to make a loop to test all possible values for a 16 bit word.
.... snip nonsense ...
NOW GO FUCK YOURSELF hahahahahaha


PLONK

--
A: Because it fouls the order in which people normally read text.
Q: Why is top-posting such a bad thing?
A: Top-posting.
Q: What is the most annoying thing on usenet and in e-mail?
Nov 14 '05 #8
Well fuck me !

Seems like Delphi has trouble with for loops as well but this time for 32
bit longwords.

var
a : longword;

for a :=0 to 4294967295 do
begin
// ...
end;

[Hint] Project1.dpr(170): FOR or WHILE loop executes zero times - deleted

BUT

At least I won't try it in C... since that would suck even worse ;) I ll bet
! :P hehehehehe.
Nov 14 '05 #9

"CBFalconer" <cb********@yahoo.com> wrote in message
news:41***************@yahoo.com...
Skybuck Flying wrote:

I was just trying to figure out how some C code worked... I needed
to make a loop to test all possible values for a 16 bit word.

... snip nonsense ...

NOW GO FUCK YOURSELF hahahahahaha


PLONK

--
A: Because it fouls the order in which people normally read text.
Q: Why is top-posting such a bad thing?
A: Top-posting.
Q: What is the most annoying thing on usenet and in e-mail?


Lol funnnnyy ! hahahahahaha

Goood one !
Nov 14 '05 #10
Alan Balmer wrote:

On Fri, 27 Aug 2004 18:43:23 +0200, "Skybuck Flying"
<no****@hotmail.com> wrote:

I have news for you - it isn't the language that's showing its
stupidity here.

There... I tried out all possibilities...


I would have tried only one - the one that works.

Go troll some other place. If you need a C program, hire a programmer.

You mean you guys haven't killfiled Skybuck already? I got him months
ago.

Brian Rodenborn
Nov 14 '05 #11
[snips]

On Fri, 27 Aug 2004 20:13:02 +0200, Skybuck Flying wrote:
S.F., I was in the process of writing up some advice you
might have found helpful. But your abusive language offends
me, and I choose not to help offensive people. You will get
no further help from me until and unless your mother teaches
you better behavior. If she fails in this endeavor, I suggest
you follow the final instruction from your own posting.


Hahahahahahahahaha too funny.

Like I need help with this... go screw yourself lol hahahah tooo funny.


Obviously you do; you were trying to write C code and failing miserably to
get it right. None of us - the regulars - would have had the particular
problem you mentioned, because we actually know C.

It follows, then, that the problem isn't C (since we can get the code
working) but with the developer - you. The solution is to replace the
defective portion of the development stream, which, in your case, means
hiring a C programmer if you want code written in C.

HTH. HAND.
Nov 14 '05 #12
Skybuck Flying wrote:
Well fuck me !


I think I'll pass up on that offer.

Thanks all the same.
--GS

Nov 14 '05 #13

, .
,~~~~~~~~. /| |\
(Oooooch...) {_;""\}
( *MHMPFF* )O o (* @'-,
\|||/ `~~~~~~~~" ,~ \~,""
(o o) ; , ("
,----ooO--(_)-------. | | |
| Please | /| | \
| don't feed the | ,(=~~==[])
| TROLL's ! | ( \`-' ;(
'--------------Ooo--' ) \ /\ \
|__|__| ( ) ) ) )
|| || * /_/ /_/
ooO Ooo |_\ |_\ JW

(Taken from www.ascii-art.de)
--
Please add "Salt and Peper" to the subject line to bypass my spam filter

Nov 14 '05 #14
Can someone please kill this twat ?
"Skybuck Flying" <no****@hotmail.com> wrote in message
news:cg**********@news2.tilbu1.nb.home.nl...

"Eric Sosman" <Er*********@sun.com> wrote in message
news:41**************@sun.com...
Skybuck Flying wrote:
I was just trying to figure out how some C code worked... I needed to make a loop to test all possible values for a 16 bit word.

Surprise Surprise... C sucks at it... once again :D lol... C is such a bad language it amazes me everytime :D

Just look at this shit:
> [progressively worse diatribe snipped]


S.F., I was in the process of writing up some advice you
might have found helpful. But your abusive language offends
me, and I choose not to help offensive people. You will get
no further help from me until and unless your mother teaches
you better behavior. If she fails in this endeavor, I suggest
you follow the final instruction from your own posting.


Hahahahahahahahaha too funny.

Like I need help with this... go screw yourself lol hahahah tooo funny.

--
Er*********@sun.com


Nov 14 '05 #15
Skybuck Flying wrote:
The original loop was something like:
for (i=0; i<=65535; i++)
{
// endless loop
}


i = -1;
do {
++i;
/* loop */
} while (i != 65535);

--
pete
Nov 14 '05 #16
Skybuck Flying wrote:
I was just trying to figure out how some C code worked... I needed to make a
loop to test all possible values for a 16 bit word.

Surprise Surprise... C sucks at it... once again :D lol... C is such a bad
language it amazes me everytime :D

Just look at this shit:

unsigned short int i;

// I set i to a large value so one can see the wrap occuring.
for (i=65500; i<65536; i++)
{
// endless loop
}

for (i=65500; i<=65535; i++)
{
// endless loop
}

for (i=65500; i<65536; ++i)
{
// endless loop
}

for (i=65500; i<=65535; ++i)
{
// endless loop
}

There... I tried out all possibilities...

The original loop was something like:
for (i=0; i<=65535; i++)
{
// endless loop
}

Ha ! C SUCKS BALLS

Man... just a simple pascal loop and I would have been done already.

var
i : word;
for i:=0 to 65535 do
begin

end;

Lol... I don't even have to test that code....

I know 100% sure it will work just fine ;)

With C one never knows lol hahahahaha.

NOW GO FUCK YOURSELF hahahahahaha


<Sorry about feeding the troll, but monsters have some
rights>

You can simplify your program to an algorithm that will
work in any language, Pascal, Delphi, C, Fortran, LISP,
Cobol, etc.

Let N be the number of bits in a processor's native
integral unit.

Let M be the maximum number, usually 2^(N-1), which
can be held in the processor's integral unit.

Let I be an index variable of the processor's integral type.

For I := (M - 5) to (M + 5) in steps of 1
do Anything or Nothing.

Now the above algorithm will most likely cause undefined
behavior in any language you code it in. The behavior
won't be the expected behavior of reaching the target
value.

Hahahahahahah, Computers have limitations. Wow!

Followups set to news:comp.programming.
--
Thomas Matthews

C++ newsgroup welcome message:
http://www.slack.net/~shiva/welcome.txt
C++ Faq: http://www.parashift.com/c++-faq-lite
C Faq: http://www.eskimo.com/~scs/c-faq/top.html
alt.comp.lang.learn.c-c++ faq:
http://www.comeaucomputing.com/learn/faq/
Other sites:
http://www.josuttis.com -- C++ STL Library book

Nov 14 '05 #17
On Fri, 27 Aug 2004 20:52:31 +0200, Skybuck Flying wrote:
Well fuck me !

Seems like Delphi has trouble with for loops as well but this time for 32
bit longwords.

var
a : longword;

for a :=0 to 4294967295 do
begin
// ...
end;

[Hint] Project1.dpr(170): FOR or WHILE loop executes zero times - deleted


Given the code and the message, I suspect longwords are signed 32-bit
values, so the result is actually a loop from 0 to some negative number -
which means the loop will never execute.

The problem, again, appears to have nothing to do with the language, but
with the developer.
Nov 14 '05 #18
"Skybuck Flying" <no****@hotmail.com> writes:
I was just trying to figure out how some C code worked... I needed to make a
loop to test all possible values for a 16 bit word.


You merely have to understand how C for loops work. i is an unsigned
short; on your system, unsigned short apparently has a maximum value
of 65535. You use the condition "i <= 65535"; a little thought would
reveal that this is always going to be true.

A C for loop is not defined to iterate over a specified range. Any C
textbook will tell you how it is defined. Take a moment to look it up.

Incidentally, your use of vulgar language is going to get you into a
lot of killfiles. Some people are understandably offended. I'm not
offended, just annoyed and bored.

Apparently you hate C. That's your right. I encourage you to stop
using it, and to stop participating in the comp.lang.c newsgroup. C
is not a perfect language, and most of us know its flaws far better
than you do. Your help is not needed here.

--
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.
Nov 14 '05 #19

"Kelsey Bjarnason" <ke*****@xxnospamyy.lightspeed.c> wrote in message
news:1r*****************************@40tude.net...
[snips]

On Fri, 27 Aug 2004 20:13:02 +0200, Skybuck Flying wrote:
S.F., I was in the process of writing up some advice you
might have found helpful. But your abusive language offends
me, and I choose not to help offensive people. You will get
no further help from me until and unless your mother teaches
you better behavior. If she fails in this endeavor, I suggest
you follow the final instruction from your own posting.


Hahahahahahahahaha too funny.

Like I need help with this... go screw yourself lol hahahah tooo funny.


Obviously you do; you were trying to write C code and failing miserably to
get it right. None of us - the regulars - would have had the particular
problem you mentioned, because we actually know C.

It follows, then, that the problem isn't C (since we can get the code
working) but with the developer - you. The solution is to replace the
defective portion of the development stream, which, in your case, means
hiring a C programmer if you want code written in C.


Man... if you gonna donna a C bug... please take the time to make up a
good/funny denial.

This one is just lame.

You lamo hahahahaha.
Nov 14 '05 #20

"Keith Thompson" <ks***@mib.org> wrote in message
news:ln************@nuthaus.mib.org...
"Skybuck Flying" <no****@hotmail.com> writes:
I was just trying to figure out how some C code worked... I needed to make a loop to test all possible values for a 16 bit word.
You merely have to understand how C for loops work. i is an unsigned
short; on your system, unsigned short apparently has a maximum value
of 65535. You use the condition "i <= 65535"; a little thought would
reveal that this is always going to be true.

A C for loop is not defined to iterate over a specified range. Any C
textbook will tell you how it is defined. Take a moment to look it up.

Incidentally, your use of vulgar language is going to get you into a
lot of killfiles. Some people are understandably offended. I'm not
offended, just annoyed and bored.

Apparently you hate C. That's your right. I encourage you to stop
using it, and to stop participating in the comp.lang.c newsgroup. C
is not a perfect language, and most of us know its flaws far better
than you do. Your help is not needed here.


On the contrary... C needs big bad assess like me to wack you against the
head lol.

Until C is a decent language :P

--
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.

Nov 14 '05 #21
[snips]

On Sat, 28 Aug 2004 02:43:31 +0200, Skybuck Flying wrote:
Apparently you hate C. That's your right. I encourage you to stop
using it, and to stop participating in the comp.lang.c newsgroup. C
is not a perfect language, and most of us know its flaws far better
than you do. Your help is not needed here.


On the contrary... C needs big bad assess like me to wack you against the
head lol.

Until C is a decent language :P


C is a decent language. No language, however, can prevent bad coders from
writing bad code. You need to learn how to use the language; if you can't
or won't do that, fine, go use something else.
Nov 14 '05 #22
On Sat, 28 Aug 2004 02:43:31 +0200, in comp.lang.c , "Skybuck Flying"
<no****@hotmail.com> wrote:

"Keith Thompson" <ks***@mib.org> wrote in message
news:ln************@nuthaus.mib.org...

A C for loop is not defined to iterate over a specified range. Any C
textbook will tell you how it is defined. Take a moment to look it up.

On the contrary... C needs big bad assess like me to wack you against the
head lol.


So, you write bad C, its pointed out to you, you mouth off, you get told
you're a silly billy, and you start acting like you're big and clever and
trying to intimidate people with faux street-talk.

Yeah, whatever. Come back when you're grown up enough to know when to hold
and when to fold.

--
Mark McIntyre
CLC FAQ <http://www.eskimo.com/~scs/C-faq/top.html>
CLC readme: <http://www.ungerhu.com/jxh/clc.welcome.txt>
----== Posted via Newsfeed.Com - Unlimited-Uncensored-Secure Usenet News==----
http://www.newsfeed.com The #1 Newsgroup Service in the World! >100,000 Newsgroups
---= 19 East/West-Coast Specialized Servers - Total Privacy via Encryption =---
Nov 14 '05 #23

"Keith Thompson" <ks***@mib.org> wrote in message
news:ln************@nuthaus.mib.org...
"Skybuck Flying" <no****@hotmail.com> writes:
I was just trying to figure out how some C code worked... I needed to make a loop to test all possible values for a 16 bit word.


You merely have to understand how C for loops work. i is an unsigned
short; on your system, unsigned short apparently has a maximum value
of 65535. You use the condition "i <= 65535"; a little thought would
reveal that this is always going to be true.


Oh shut up... I will just react because other silly dumbassess like you
might actually believe you're shit.

Just search for code like this:

(for i=0; I<some_field; i++)

As soon as some_field equals 65535 and I happens to be an unsigned short the
code will loop forever :D

Some thing will happen if it's 32 bit.

HEHEHEHEHEHE

ALL YOUR BASE BELONG TO US LOL.
Nov 14 '05 #24
"Skybuck Flying" <no****@hotmail.com> writes:
[...]
ALL YOUR BASE BELONG TO US LOL.


It's "ALL YOUR BASE ARE BELONG TO US", you half-wit.

Followups redirected appropriately.

--
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.
Nov 14 '05 #25
Kelsey Bjarnason <ke*****@xxnospamyy.lightspeed.c> scribbled the following:
[snips] On Sat, 28 Aug 2004 02:43:31 +0200, Skybuck Flying wrote:
Apparently you hate C. That's your right. I encourage you to stop
using it, and to stop participating in the comp.lang.c newsgroup. C
is not a perfect language, and most of us know its flaws far better
than you do. Your help is not needed here.
On the contrary... C needs big bad assess like me to wack you against the
head lol.

Until C is a decent language :P

C is a decent language. No language, however, can prevent bad coders from
writing bad code. You need to learn how to use the language; if you can't
or won't do that, fine, go use something else.


I'm amazed there are people here who still haven't killfiled the troll
"Skybuck Flying". What perverse pleasure do they get from reading his
utterly moronic drivel?

--
/-- Joona Palaste (pa*****@cc.helsinki.fi) ------------- Finland --------\
\-- http://www.helsinki.fi/~palaste --------------------- rules! --------/
"It's not survival of the fattest, it's survival of the fittest."
- Ludvig von Drake
Nov 14 '05 #26
>
This reminds me of the man who took a chain-saw back to return it,
saying that it was the worst machine in the world and took him hours to
cut through a two foot log. The salesman started it up to see what was
wrong and the man yelled "Hey, What's that sound?!"
.................................................. .........
> Posted via AtlantisNews - Explore EVERY Newsgroup <
>> http://www.AtlantisNews.com -- Lightning Fast!! <<
Access to More Content * No Limits * Best Retention <<<


I bought a hammer the other day and it wouldn't screw in the screw i
wanted. It was an expensive hammer too. Stupid hammer.
Nov 14 '05 #27
Skybuck Flying wrote:
I was just trying to figure out how some C code worked... I needed to make a
loop to test all possible values for a 16 bit word.

Surprise Surprise... C sucks at it... once again :D lol... C is such a bad
language it amazes me everytime :D


What amazes me is that you created the problem and then bitch that it
doesn't work. Remember, C goes by the philosophy that the programmer
knows what he's doing. Don't bother programming in C until you
understand the constraints of a variable. This wasn't a problem with
the language, it was a problem with you.

And yes, the quote at the end of this message *is* directed towards you.

--
Sean

"The problem with the world is stupidity. Not saying there should
be a capital punishment for stupidity, but why don't we just take the
safety labels off of everything and let the problem solve itself?", Unknown.
Nov 14 '05 #28

"Fao, Sean" <en**********@yahoo.comI-WANT-NO-SPAM> wrote in message
news:et********************@adelphia.com...
Skybuck Flying wrote:
I was just trying to figure out how some C code worked... I needed to make a loop to test all possible values for a 16 bit word.

Surprise Surprise... C sucks at it... once again :D lol... C is such a bad language it amazes me everytime :D
What amazes me is that you created the problem and then bitch that it
doesn't work. Remember, C goes by the philosophy that the programmer
knows what he's doing. Don't bother programming in C until you
understand the constraints of a variable. This wasn't a problem with
the language, it was a problem with you.

And yes, the quote at the end of this message *is* directed towards you.


Hhahahahaha.

This attidude... like the programmer should know it's language is why C
programs generally sucks ass and contain insane ammounts of bugs
hahahahahaha.

--
Sean

"The problem with the world is stupidity. Not saying there should
be a capital punishment for stupidity, but why don't we just take the
safety labels off of everything and let the problem solve itself?",

Unknown.
Nov 14 '05 #29
Skybuck Flying wrote:
I was just trying to figure out how some C code worked... I needed to make a
loop to test all possible values for a 16 bit word.

Surprise Surprise... C sucks at it... once again :D lol... C is such a bad
language it amazes me everytime :D

Just look at this shit:

unsigned short int i;

// I set i to a large value so one can see the wrap occuring.
for (i=65500; i<65536; i++)
{
// endless loop
}

for (i=65500; i<=65535; i++)
{
// endless loop
}

for (i=65500; i<65536; ++i)
{
// endless loop
}

for (i=65500; i<=65535; ++i)
{
// endless loop
}

There... I tried out all possibilities...

The original loop was something like:
for (i=0; i<=65535; i++)
{
// endless loop
}

Ha ! C SUCKS BALLS

Man... just a simple pascal loop and I would have been done already.

var
i : word;
for i:=0 to 65535 do
begin

end;

Lol... I don't even have to test that code....

I know 100% sure it will work just fine ;)

With C one never knows lol hahahahaha.

NOW GO FUCK YOURSELF hahahahahaha


"There is nothing more amazing than stupidity in action."
-- Thomas Matthews
--
Thomas Matthews

C++ newsgroup welcome message:
http://www.slack.net/~shiva/welcome.txt
C++ Faq: http://www.parashift.com/c++-faq-lite
C Faq: http://www.eskimo.com/~scs/c-faq/top.html
alt.comp.lang.learn.c-c++ faq:
http://www.comeaucomputing.com/learn/faq/
Other sites:
http://www.josuttis.com -- C++ STL Library book

Nov 14 '05 #30
Skybuck Flying wrote:
[...]
This attidude... like the programmer should know it's language is why C
programs generally sucks ass and contain insane ammounts of bugs
hahahahahaha.

[...]

C lets smart programmers write smart programs. Unfortunately, in order
to give them this ability, it also allows dumb programmers to write dumb
programs, as you have so eloquently demonstrated.

(And I'll leave the "*BLAM* *BLAM*" for "it's" for someone else.)

((And yes, it's a slow day. Why do you ask?))

--
+-------------------------+--------------------+-----------------------------+
| Kenneth J. Brody | www.hvcomputer.com | |
| kenbrody/at\spamcop.net | www.fptech.com | #include <std_disclaimer.h> |
+-------------------------+--------------------+-----------------------------+
Nov 14 '05 #31

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

Similar topics

4
by: Derek | last post by:
I am trying to refresh one datagrid after updating another datagrid. I can not call BindData for one under the other bind sub because it creates an endless loops on page load. Is there way to...
7
by: (Pete Cresswell) | last post by:
We were testing a version of our app that's been running for months with no problems and it started throwing "Object no longer exists" messages on two machines in the test environment. We tried...
24
by: Tweaxor | last post by:
This has been puzzling me all this week. This is actually a homework assignment from last semesmter. But the teacher wouldn't tell us why certain things didn't work, but it didn't just work. My...
13
by: Bev in TX | last post by:
We are using Visual Studio .NET 2003. When using that compiler, the following example code goes into an endless loop in the "while" loop when the /Og optimization option is used: #include...
73
by: Claudio Grondi | last post by:
In the process of learning about some deeper details of Python I am curious if it is possible to write a 'prefix' code assigning to a and b something special, so, that Python gets trapped in an...
6
by: uche | last post by:
This function that I have implemented gives me an infinite loop. I am trying to produce a hexdum program, however, this function is not functioning correctly.....Please help. void...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
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
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
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...

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.