• + 0 comments

    /* * @Author : Rehan */ public static void printArray(T[] array){ for(T element : array){ System.out.println(element); } }