About 4,180 results
Open links in new tab
  1. C Program to Find the Roots of a Quadratic Equation

    In this example, you will learn to find the roots of a quadratic equation in C programming. This program accepts coefficients of a quadratic equation from the user and displays the roots …

  2. Quadratic Equation Program in C

    Here we will write a quadratic equation program in c to solve quadratic equation and find the roots of quadratic equation using c programming language. Prerequisites for Quadratic Equation …

  3. Solving Quadratic Equations in C - Code with C

    Jun 14, 2022 · Solving Quadratic Equations in C or finding the roots of Quadratic Equations with source code, algorithm, and sample output.

  4. equation solving - Quadratic functions in c - Stack Overflow

    int a,b,c; // variables. long int result; // my X in the quadractic function. long int y,x; // the result. long int quadratic; printf("enter values for a,b,c\n"); scanf("%i\n %i\n %i", &a,&b,&c); …

  5. Find Roots of a Quadratic Equation in C - Online Tutorials Library

    Learn how to write a C program to find the roots of a quadratic equation using the quadratic formula and understand its implementation. Explore the steps to create a C program that finds …

  6. Solving Quadratic Equations using C Programming

    Dec 6, 2024 · The objective of this program is to solve quadratic equations by calculating the roots using the quadratic formula: x = (-b ± √(b² - 4ac)) / 2a. Given values for a, b, and c, this C …

  7. C Program for Quadratic Equation Roots - GeeksforGeeks

    Jul 14, 2023 · In this article, we will learn to write a C program to find the roots of the quadratic equation. Quadratic Equation is polynomial equations that have a degree of two, which implies …

  8. How to Solve Quadratic Equations in C | LabEx

    In this lab, you will learn how to solve quadratic equations in C programming. The lab covers the complete process, starting from reading the coefficients of the quadratic equation, computing …

  9. C Program: Calculate the root of a Quadratic Equation

    Mar 18, 2025 · Write a C program to solve a quadratic equation without using the sqrt() function by implementing a custom square root routine. Write a C program to compute quadratic roots …

  10. Write a C program to find the roots of a quadratic equation using ...

    Write C programs that use both recursive and non-recursive functions to find the factorial of a given integer. (a).without using recursive function. #include(stdio.h) // place this '<' & '>' i...

Refresh