• 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,553
    Unique
    Visitors
    Powered By Google Analytics
  • Look Around

  • Recent Posts

  • Categories

  • c programming

    C Programming Decimal Equivalent of Letters

    Sunday, November 1st, 2009

    In C, each letter is actually a decimal, with a difference of 32. To make ‘z’ an uppercase, you would subtract 32 from it, giving us ‘Z’.

    C If, Else if, Else Tutorial

    Wednesday, October 14th, 2009

    This is a very funny tutorial laying out the ‘If, Else if, and Else’ options in C programming.

    Which Variable Type Do I Use in C?

    Sunday, October 4th, 2009

    How should I decide which integer type to use?
    If you might need large values (above 32,767 or below -32,767), use long. Otherwise, if space is very important (i.e. if there are large arrays or many structures), use short. Otherwise, use int. If well-defined overflow characteristics are important and negative values are not, [...]

    Easier Syntax for C Loops

    Friday, September 4th, 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++;

    Follow my C Programming Language with me in Class

    Wednesday, September 2nd, 2009

    I am currently taking a C Programming Language class at my alma mater, The University of Louisville, in preparation for hours spent waiting for the door to be open before class starts. You can view my online class notes updated each Mon and Wed located here in my Google Doc for class notes. Also review [...]

    C Variables

    Wednesday, September 2nd, 2009

    To use a variable in C Language, you must first declare a name and type. There are four types of variables with C Programming as we can see below,

    int (stands for integer, i.e. 2, 44, 90, etc)
    float (standing for floating point variable, i.e. 1.33, 2.44444, etc)
    double (stands for double percision, a difficult way of saying [...]

    Compiling C File in Mac

    Tuesday, May 19th, 2009

    To run a c file in Mac, most versions, and using Terminal, please use the following code to run your program:
    Desktop/main.c -o Desktop/main
    Desktop/main
    With main.c being your file you are working on.