Guest User

Untitled

a guest
May 27th, 2019
139
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. #include <algorithm>
  2.  
  3. int main () {
  4. int* a = (int*)malloc (10000);
  5. int* b = (int*)malloc (10000);
  6. for (volatile long int i = 0; i < 100000000; i++)
  7. std::copy (a, a + 10000, b);
  8. }
Add Comment
Please, Sign In to add comment