Guest User

Untitled

a guest
Dec 7th, 2017
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. #include <stdio.h>
  2.  
  3. void print(int* values, int length);
  4. void removeDuplicates(int* values, int length);
  5.  
  6. int main() {
  7. int arr[] = {1,3,5,3,2,4,6,5,3,0,3,0};
  8. int newSize = removeDuplicates(arr, 12);
  9. print(arr, newSize);
  10.  
  11. return 0;
  12. }
  13.  
  14. void print(int* values, int length) {
  15. }
Add Comment
Please, Sign In to add comment