fork download
  1. #include <iostream>
  2. #include <iomanip>
  3.  
  4. using namespace std;
  5.  
  6. struct list //двусвязный список целочисленный
  7. {
  8. int val;
  9. list* prev = NULL;
  10. list* next = NULL;
  11. };
  12.  
  13. int main(int argc, const char * argv[])
  14. {
  15.  
  16. }
  17.  
Success #stdin #stdout 0s 4184KB
stdin
Standard input is empty
stdout
Standard output is empty