j
k
j a
j l
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
Back to the thread
Back to the list