Re: What is a "null loop" in the programming language context?
- From: Dave <solomons_dad.w.marks_and_whom@xxxxxxxxxx>
- Date: Mon, 31 Oct 2005 14:52:50 +0000
> in the programming language context
Willem probably guessed that from the fact that you were posting here.
Since you're not willing to say where you heard it and in what SPECIFIC context, you're going to be stuck with guesses. So here's one:
for (i=0; i<10; i++)
{
// a null loop, perhaps?
}- so called because it does nothing.
It's probably more use where the action is contained in the for statement itself, such as:
char str[32];
for (int i=0; i<32; str[i++]=0) {}
.- Prev by Date: Re: zooming
- Next by Date: Re: Synchronization routine
- Previous by thread: Re: What is a "null loop" in the programming language context?
- Next by thread: Re: problems in compiling IJG lib in VC++ 6.0
- Index(es):