/* Arup Guha
   8/24/2011
   My first C Program
*/

#include <stdio.h>
int main() {

    // Create the variable age and set it to a value.
    int age;
    age = 3*6;

    // Print out your age this year and next.
    printf("age = %d, next year  %d\n", age, age+1);

    // Illustrates that the variable age has not changed value.
    printf("age is still %d\n", age);

    // Change age's value and print out the new value.
    age = age + 1;
    printf("age is now %d", age);
    return 0;

}
