Thursday 2 December 2010

The correct syntax of do-while loop is,

►(condition ) while; do { statements; };
►{ statements; } do-while ();
►while(condition); do { statements; };
do { statements; } while (condition);

No comments:

Post a Comment