Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Write a C program to find the slope of line through the two points ( x 1 , y 1 ) and ( x 2

Write a C program to find the slope of line through the two points (x1,y1) and (x2,y2). The
formula is given : m =(y2- y1)/(x2- x1)
Declaration: x1,y1, x2, y2, and m should be float variables (not integer).
Make sure that check: If x1 equals x2, then the line is vertical, and the slope is undefined. If the slope is undefined, it should write a message Slope undefined.

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Students also viewed these Databases questions