Returns vertices (r,c) connected by edge e

What will be an ideal response?

```
void Digraph :: getEdge(const int e, int& r, int& c) const
{
r = edges[e][0];
c = edges[e][1];
}

```

Computer Science & Information Technology

You might also like to view...

Canvas’s ________ method draws a circle.

a. drawOval b. drawEllipse c. drawCircle d. None of the above

Computer Science & Information Technology

In the Reflect dialog box, the Vertical option button is in the ____ section.

A. Flip B. Axis C. Angle D. Join

Computer Science & Information Technology