'//how do print Tekschool with parenthese

import java.util.Arrays; class Main {

public static void main(String[] args) {

String str = "TEKschool"; char array[] = str.toCharArray();

System.out.println(Arrays.toString(array));

//how do print Tekschool with parenthese }

}



Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source