/*HW1.c*/ /*Comment: Homework # 1 for EPS 2 by Matthew Glynn 0056233 59:006 Section #B36*/ /*When Ran in cmd.exe, This program will display Information about Me, Matthew Glynn*/ /*Uploaded January 18 at 12:35 AM*/ #include /* function main begins program execution */ int main( void ) { int pause; printf ("Matthew Glynn\nSection B36\nChicago,IL\n"); scanf("%d", &pause); return 0; /* indicate program ended successfully*/ } /* end function main */