Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Create a C program (show the solution code as the answer): - THIS CODE NEEDS TO BE ABLE TO RUN IN Pelles C. Please make

Create a C program (show the solution code as the answer):

- THIS CODE NEEDS TO BE ABLE TO RUN IN Pelles C. Please make sure it can run in Pelles C before answering (show screenshots of the code outputs).

- DO NOT USE BREAK STATEMENTS!

Instructions: 1. Create a C program. 2. Display the clock on row 3, col 20. The clock format will be as follows: [ 5 : 59 : 13 ] 3. Loop thru all of the seconds in the day, from 0:0:0 to 23:59:59. 4. Have the user hit any key to start the clock. 5. The clock will sleep after displaying each second. The initial sleep time will be 100ms. 6. By hitting keys, the user will be able to change the sleep time anywhere between min: 100ms to max: 2000ms. 7. In real time, detect, these keystrokes: a. + : This will increase the sleep time by 100ms. Do not go over the maximum limit. b. - : This will decrease the sleep time by 100ms. Do not go below the minimum limit. c. : will exit the program. Move the cursor to bottom of console window before exiting. d. F5 : Start the clock over at 0:0:0. e. If any other key is hit, go to row 1, col 50 to display this invalid keystroke. 8. The program will end by 1 of 2 ways: a. It loops thru all of the seconds in a day. b. User hits

NOTE: 1. You MUST use nested WHILE loops.

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access with AI-Powered Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Students also viewed these Databases questions