MATHEMATICS - C Codes
Description it is method to find root as an example equation x^3-2x-5 is taken Source Code #include<stdio.h> #include<conio.h> #include<math.h> float f(float x); void main() ...

Description Enter the coordinates of respective points and know about type of triangle. Source Code #include <stdio.h> #include <conio.h> #include <math.h> #include<stdlib.h> ...

Description for equqtion xlog x-1.2 Source Code #include<stdio.h> #include<conio.h> # include<math.h> float f(float x); float df(float x); void main() { float a,b,c,t,d; ...

Description This code calculates Square Root of a Number without using Built-In Function. Source Code #include<stdio.h> #include<conio.h> void main() { double n,g1,g2; int flag=0; c ...

Description This is a program which Evaluates the value, Adds, Multiplies two polynomials P & F to Evaluate Polynomial of Degree less than or equal to 20. Source Code #include <iostream.h> ...





