Guest User

Untitled

a guest
Dec 13th, 2018
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.19 KB | None | 0 0
  1. int j = 8;
  2. while(j > 0){
  3.     RecentRR[j] = RecentRR[j - 1];
  4.     j--;
  5. }
  6. RecentRR[0] = currentRR;
  7.  
  8.  
  9.  
  10. int i = 8;
  11. while(i > 0){
  12.     RecentRR[i] = RecentRR[i - 1];
  13.     i--;
  14. }
  15. RecentRR[0] = currentRR;
Add Comment
Please, Sign In to add comment