MaximCherchuk

wtf

Jan 15th, 2019
104
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.17 KB | None | 0 0
  1. #include <cstdio>
  2. #include <vector>
  3.  
  4. int main() {
  5.   std::vector<int> v;
  6.   printf("%d\n", (int)v.size());
  7.   for(int i : v) {
  8.     printf("%s\n", "hello");
  9.   }
  10. }
Advertisement
Add Comment
Please, Sign In to add comment