Description: This program implements the DDA algorithm of line drawing. Primary Input: Two end point coordinates of the line. Primary Output: A line drawn according to the given end points. Platform Used: Turbo C++ version 3.0, Borland International Inc. /*This program generates a line according to DDA algorithm for given end points. */ #include #include #include #define ROUND(a) ...