. . float a[6] = { 0.5, 0.09, 0.3, 0.75, 0.0, 0.90 }; float b[6] = { 1.9, 1.3, 1.2, 0.75, 0.1, 2.0 }; char *t[6] = { "Chicago", "New York", "L.A.", "Atlanta", "Paris, MD\n(USA) ", "London" }; out_graph( 250, 200, stdout, GDC_3DBAR, 6, t, 2, a, b ); . . |