I don't really understandthe concept of the DO function could someone elxplain to me it, and tell me how it is usefull...
Thanks in advance.
This is a discussion on (do) within the C Programming forums, part of the General Programming Boards category; I don't really understandthe concept of the DO function could someone elxplain to me it, and tell me how it ...
I don't really understandthe concept of the DO function could someone elxplain to me it, and tell me how it is usefull...
Thanks in advance.
it's not a function, it's a keyword.Originally posted by Unregistered
I don't really understandthe concept of the DO function could someone elxplain to me it, and tell me how it is usefull...
Thanks in advance.
do { statements; } while (expression);
do is exactly like while except it goes through the loop once before testing for conditions.