Computer Science, asked by swaindibya2002, 3 months ago

write a program to display the equation of the line nin the form ax+ by=c

Answers

Answered by mahesijjh
2

In c language,I wrote this program

#include<stdio.h>

#include<conio.h>

void main()

{

clrscr();

printf("ax+by=c");

getch();

}

Similar questions