I am trying to execute my C++ program using this executable:
./dijkestra <graph> <direction>
Where ./dijkestra is my executable, (which I already set in my Makefile). graph is the .txt file I will be reading from, and direction is a variable that tells me the direction of the graph.
What do I need to add to my code for it to understand and set these variables? Is it something I need to add to my Makefile?