Guest User

Untitled

a guest
Feb 21st, 2018
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.58 KB | None | 0 0
  1. C:\Desktop>cat megatest.cpp
  2. #include <vector>
  3. int main()
  4. {
  5. std::vector<int> badgers(3);
  6. badgers.push_back(4);
  7. badgers.push_back(7);
  8. badgers.push_back(21);
  9. return badgers.at(0);
  10. }
  11.  
  12. C:\Desktop>cl /EHsc /W4 megatest.cpp
  13. Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 14.00.50727.42 for 80x86
  14. Copyright (C) Microsoft Corporation. All rights reserved.
  15.  
  16. megatest.cpp
  17. Microsoft (R) Incremental Linker Version 8.00.50727.42
  18. Copyright (C) Microsoft Corporation. All rights reserved.
  19.  
  20. /out:megatest.exe
  21. megatest.obj
  22.  
  23. C:\Desktop>
Add Comment
Please, Sign In to add comment