diff --git a/C/UniqueElements.c b/C/UniqueElements.c new file mode 100644 index 0000000..1197696 --- /dev/null +++ b/C/UniqueElements.c @@ -0,0 +1,38 @@ +#include +int main() +{ + int a[10000],b[10000],i,j,n,c=0 ; + printf("Enter size of the array : "); + scanf("%d", &n); + printf("Enter elements in array : "); + for(i=0; i