What will be the output of following program?
public class prg
{
public static void main(String[] args)
{
System.out.print("Hello");
System.out.println("Guys!");
}
}
1
HelloGuys!
2
Hello Guys !
3
Hello
Guys !
Guys !
4
Compile with a Warning