// Arup Guha
// 8/22/2011
// My first C Program!!!

#include <stdio.h> // Including I O stuff

int main() {

    // Illustrating printf. Here we use the newline character.
    printf("Hi, hope it's not raining any more.\n");

    // Here we don't.
    printf("Hope we get to go soon. I'm hungry!!!");

    // This is an example of the escape sequence to print out a double quote.
    printf("Bobby says, \"It is almost time to go.\"");

    return 0;

}
