Now we know exactly what type the argument to main() is in the following:
class helloworld{
public static void main(String[] args){
System.out.println("Hello world!");
}
}
Here, args is an array of String. We don't need the equivalent of argc in C because we can extract it via args.length.