/* File Name : Atemp.c Course Number : ISYS 290 04 Student Name : Jason Gradziel Student Number : 826-135-535 Professors Name : Brian Perry Class Name : Wednesday 9:55 - 12:35 Lab Title : A temp file to start from. */ #include int clrscr(void); int pause(void); int temps(char temp[81]); int title(void); int main(void) { char temp[81] = {"\0"}; clrscr(); title(); pause(); return 0; } int clrscr(void) { for (int x=0; x<24; x++) printf("\n"); return 0; } int pause(void) { int c; printf("\nPress enter to continue...\n"); while ((c = getchar()) != '\n') printf("%c", c); return 0; } int temps(char temp[81]) { gets(temp); return 0; } int title(void) { printf("\n\n\t\t\tTitle of Program"); for (int x=0; x<19; x++) printf("\n"); return 0; }