fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. struct Vertex{
  5. int num;
  6. int low;
  7. bool seen;
  8. Vertex *parent;
  9. Vertex(){
  10. num = 0; low = 0; seen = false; parent = NULL;
  11. }
  12. };
  13.  
  14. int main() {
  15. int numVert = 10;
  16. Vertex *mark;
  17. mark = new Vertex[numVert];
  18. }
Success #stdin #stdout 0s 3012KB
stdin
stdout
Standard output is empty