Question: Solve with C/C++ Problem: Write a template function distance (p1, p2) that computes the distance between the two 2-dimensional points p1 and 22: distance(p1, p2)
Solve with C/C++

Problem: Write a template function distance (p1, p2) that computes the distance between the two 2-dimensional points p1 and 22: distance(p1, p2) = (p1.x p2.x)2 + (p1. y - p2.y) Here (x,y) coordinates can be of any type T. Write a template class Point that defines the (x,y) coordinates of the 2-D point. Declare distance as a friend function of this class. Also provide a constructor to initialize (x,y) and a print() function for the Point class. Write a main() code that creates two Point objects with coordinates (2.1, 3.4) and (5.5,6.0), computes and prints the distance between these two points
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
