fork download
  1. #include <iostream>
  2. #include <typeinfo>
  3. #include <deque>
  4. using namespace std;
  5.  
  6. #define vector deque
  7.  
  8. int main() {
  9. vector<int> v;
  10. cout << typeid(v).name() << endl;
  11. }
Success #stdin #stdout 0s 3412KB
stdin
Standard input is empty
stdout
St5dequeIiSaIiEE