write a program to display the equation of the line nin the form ax+ by=c
Answers
Answered by
2
In c language,I wrote this program
#include<stdio.h>
#include<conio.h>
void main()
{
clrscr();
printf("ax+by=c");
getch();
}
Similar questions