C Program To Find The Roots Of Quadratic Equation

C program to To Find The Roots Of Quadratic Equation using if else statement…Quadratic equation is the second degree equation of only one variable, which is in the form of ax^2+bx+c, where a, b, c are the constants. Here in this program, we use the simple if-else statement to fin the roots of the quadratic …

C Program to accept two integers for a co-ordinate point and determine its Quadrant.

C program to accept two integers for a co-ordinate point and determine its Quadrant. A Cartesian coordinate system specifies each point uniquely in a plane by a pair of numerical coordinates, which are the signed distances from the point to two fixed perpendicular directed lines, measured in the same unit of length. The left to …

C Program to check whether the given number is prime or not. Print the suitable messages.

C Program to check whether the given number is prime or not and Print the suitable messages. Prime number is a whole number and greater than 1, which is divisible by one or itself.Example: 2, 3, 5, 7, 11, 13………… Read more about C Programming Language . Read more Similar C ProgramsLearn C ProgrammingNumber System …

C Program to check whether a given 5 digit number is palindrome or not

C program to check whether a given 5 digit number is palindrome or not. Palindromic number is a number that remains same, when it is reversed or can be read in the same way in either direction.Example:12321, 23132… Read more about C Programming Language . Read more Similar C ProgramsLearn C ProgrammingNumber System You can …

C Program to find whether the given year is leap or not.

C Program to find whether the given year is leap or not. Leap year is a year, which is containing one extra day, i.e 366 days. In the leap year February contains the date 29. Read more about C Programming Language . Read more Similar C ProgramsLearn C ProgrammingNumber System You can easily select the …

C Program to generate n Fibonacci terms using array declaration.

Example programs to solve the problems of Arrays in C,C Program to generate n Fibonacci terms using array declaration. Fibonacci numbers are sequence of numbers starts from 0 and 1 , continue by adding previous number.Example: 0,1,1,2,3,5,8,13,…….. Read more about C Programming Language . Read more Similar C ProgramsArray In CNumber SystemSimple C Programs You …