Question: Instructions Create a C program that performs that does the following: Define an enumerated list for the days of the week (Sun, Mon, Tue, Wed,
Instructions
Create a C program that performs that does the following:
Define an enumerated list for the days of the week (Sun, Mon, Tue, Wed, Thu, Fri and Sat) Note: Do so using the fewest symbols in the instruction as possible.
Sunday should reference the integer value of 1
Saturday should reference the integer value of 7
Create the user-defined data type for each of the built-in data types specified in the table below
| Built-in Data Type | User-defined Data Type |
| bool | boolean |
| char | letter |
| char* | string |
| double | decimal |
| int | number |
Create a user-defined structure for a student using information in the table below
| Data Item | Data Type | Size |
| studentId | char | 9 |
| lastName | char | 30 |
| firstName | char | 30 |
| initial | char | n/a |
| enrolledCourses | int | n/a |
| gpa | double | n/a |
| inGoodStanding | bool | n/a |
Additional Notes
Ensure your source code conforms to the programming and commenting standards for the class
Submit the project source code as a single *.c file
Submit a text capture of the compiler output as a *.txt file
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
