fork download
  1. #include <stdio.h>
  2. #include <stdlib.h>
  3. #include <string.h>
  4. #include <iostream>
  5.  
  6. using namespace std;
  7.  
  8. typedef struct NODE
  9. {
  10. int num; //represent number of node
  11. int time;
  12. struct NODE* parent;
  13. } node;
  14.  
  15. int main()
  16. {
  17. node test;
  18. cout<<3;
  19. return 0;
  20. }
Success #stdin #stdout 0s 3296KB
stdin
Standard input is empty
stdout
3