fork(1) download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. template <typename T>
  5. class LinkedList{
  6. public:
  7. class Node{
  8. public :
  9. T elem;
  10. Node* next;
  11. };
  12. Node* header;
  13. };
  14.  
  15. int main()
  16. {
  17. LinkedList< char > list;
  18. list.header = NULL;
  19. return 0;
  20. }
Success #stdin #stdout 0s 16064KB
stdin
Standard input is empty
stdout
Standard output is empty