• Feed
  • About The Blog

    The Blogosaurus is a company technology blog from Louisville Web Development firm MIB Solutions. The issues on or blog range from our personal use of Wordpress, Joomla, PHP and Database programming, AJAX, Flash, and other web development languages and tools we use on our client's projects.

    The Blogosaurus was born in 2008, and continues to be a resources for Internet professionals and Google searches alike.

  • Categories

  • Archives

  • Recent Posts

  • Our Analytics


    9,383
    Unique
    Visitors
    Powered By Google Analytics
  • Look Around

  • Recent Posts

  • Categories

  • « 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++;

    Comments