// TODO: write a header comment // Name of program // name.c // // This program was written by YOUR-NAME-HERE (zXXXXXXX) // on INSERT-DATE-HERE // // One line summary of what this program does. #include #include int main(void) { // TODO: Prompt the user for a width, height, and duration. // TODO: Open a window of size `width`-by-`height`. // TODO: Wait for `duration` seconds, keeping the window open. // TODO: Close the window. return 0; }