http://stackoverflow.com/questions/19400349/how-to-pass-structure-to-function-in-c void CreateRoute(Route *route) { if (route == NULL) return; int start = rand()%10; int end = rand()%10; if (start == end) { while(true) { end = rand()%10; if(end != start) break; } } route->startPoint = SetPoint...