'How can I align two (disconnected) nodes in GraphViz?

Suppose I have the GraphViz graph:

digraph G {
a->b->d;
c->d;
}

How can I make a and c be aligned vertically, i.e. appear at the same height?

enter image description here



Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source