Hi All,

This is probably a very basic question but here goes anyways -- which
would be faster in C/C++ (or would it make no difference at all?):


while(condition)
{
  ...
}

OR

while(true)
{
  ...
  if(condition)
    break;
  ...
}


Thanks,
Siddhesh

-- 
Siddhesh Poyarekar
This document validates as Plain Text

-- 
http://mm.glug-bom.org/mailman/listinfo/linuxers

Reply via email to