/********************************/ /* hello.c */ /* A simple C program */ /* EECS10 Discussion week1 S1 */ /* Author: Weiwei Chen */ /* Date: Jun. 26. 2012 */ /********************************/ #include int main(void) { printf("Hello World! \n"); printf("My name is Weiwei. \n"); return 0; }