Question: Assignment031f-else and While Statements Submit Assignment Due Tuesday by 11am Points 20 Submitting a file upload File Types pdf, doc, and docx Available Jan 28

Assignment031f-else and While Statements Submit Assignment Due Tuesday by 11am Points 20 Submitting a file upload File Types pdf, doc, and docx Available Jan 28 at 11am - Feb 4 at 11:59pm 8 days Department of Electrical and Computer Engineering Florida International University EEL 2880 - Applied Software Techniques in Engineering Assignment #3 (Coding Assignment) Instructions: Submit your code along with the screenshots of your output in a single file (only.pdf.doc.docx are allowed). (Write separate program for each question.) Submission without code or without screenshots of the output will NOT be graded. . Please follow the template when writing the code -> Template for Coding Assignment Add _CRT_SECURE_NO_WARNINGS into Preprocessor Definitions to avoid errors of scanf() for the new versions of Visual Studio Q1. Write a complete C program to determine the roots of the quadratic equation: az? +bx+c=0 using the well-known quadratic formula: b2/6-4ac = 2a The quantity 62 - 4ac can be greater than, less than or equal to zero. Test the program using the following data: (Screenshot your output for all three cases) 1.) a = 3, b = 6, C = 3 2.) a = 1, b = 3, c = 1 3.) a = 2, b = 4.C = 3 Hint If b2 - 4ac > then results are 2 real roots. If b2 - 4ac = then results are repeated real roots. . If b2 - 4ac
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
