« No WPMU site defined on this host. with Wordpress MU | Home | Wordpress Author Link Open in New Window »
Easier Syntax for C Loops
September 4, 2009
While it is common knowledge that to create a while loop in C you would use the following,
counter = counter + 1;
There are two even easier ways to do the above,
counter += 1;
and an even easier loop statement would be
counter++;
Filled Under: c programming | No Comments »

