This is the example of c-programming. You can edit and compile code in your own way on clicking button. If you have better solution or you found any error on code, then give us suggestion.
Full Code:
Code Explanation :
To understand this example, you should have the knowledge of the following C programming topics:
The standard form of a quadratic equation is:
ax<sup>2</sup> + bx + c = 0, where a, b and c are real numbers and a != 0
The term b2-4ac
is known as the discriminant of a quadratic equation. It tells the nature of the roots.
- If the discriminant is greater than
0
, the roots are real and different. - If the discriminant is equal to
0
, the roots are real and equal. - If the discriminant is less than
0
, the roots are complex and different.
In this program the function of the sqrt()
library is used to find a number's square root.
Our example mainly covers following topics in any programing
- Basic Programs
- Number Programs
- Array Programs
- Matrix Programs
- Pattern Programs
- String Programs
- Tree Programs
- Singly Linked List Programs
- Circular Linked List Programs
- Doubly Linked List Programs
Here we share programs on various topics such as array strings, series area & volume of geometric figures, mathematical calculation algorithms for sorting & searching and much more.Our goal is to provide you with the perfect solution to all the programming problems you may have encountered either during interviews or in class assignments. If you don’t find what you are looking for then please drop a line in the comment section of example page or you can request from account page so that we can get it added to the below collection of programs. Happy Learning!!
If you are confident with the above programs and are able to successfully understand and run them without any problems then it is time for you to take a step further and learn comprehensive programming principles using examples and flow diagrams. Here is the link: Programming tutorial lists .
If you find this example helpful, don't forget to share it with your friends. And stay updated with us by subscribing adzetech.
If you find any code error or grammetical error then you can suggest for example improvement on clicking below button.
Check out these related examples:
- C program to multiply two matrices without function
- C Program to Display Fibonacci Sequence
- C Program to Convert Decimal to Octal Number [function]
- C Program to Check Whether a Character is a Vowel or Consonant
- C Program to Convert Binary to Octal [function]
- Display the pattern like right angle using an asterisk
- C Program to Sort Elements in Lexicographical Order (Dictionary Order)
- C Program to Check Whether a Number can be Expressed as Sum of Two Prime Numbers
- C Program to Calculate Difference Between Two Time Periods
- C Program to Find LCM of two Numbers
Leave comment