Monday, August 22, 2011

Program to calculate the unknowns of simultaneous linear equations



#include<stdio.h>
#include<math.h>
int main()
{
int i,j,k,n;
float c,a[100][101],x[100];
printf("Enter the no. of variables:");

Read more!