Graph.cc: In function `int main(...)':
Graph.cc:248: void value not ignored as it ought to be
Graph.cc:251: void value not ignored as it ought to be
sara
so when you call another function that wants a pointer
doSomething(function f)
then inside doSomething you can access the function just as you would any
pointer data
(*f)(a,b);
check the csc180 c textbook for simpler examples, maybe try a little test
program
hope this helps