// 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 #define WIDTH 960 #define HEIGHT 360 #define DELAY_DURATION 5000 int main(void) { // Prompt the user for a red component value. // Prompt the user for a green component value. // Prompt the user for a blue component value. // Open a window `960` pixels in height and `360` pixels in width. // Display the user's RGB colour for 5 seconds. // Close the window. return 0; }