/* Delete duplicate array elements - Program to delete all the duplicate values from a given array */ #include #include void main() { int i, j, k, m, n, x[50] ; clrscr() ; printf("Enter the number of elements: ") ; scanf("%d", &n) ; printf("Enter the elements: \n") ; for(i=0 ; i