Notice


AWT and SWING will be covered soon !

Sunday, September 20, 2009

Concatenate Two Strings

 

image

public class strcon
{
    public static void main (String args[])
    {
        String str1="Hello";
        String str2="World";
        String output;
        output=str1.concat(str2);
        System.out.print(output);
    }
}

No comments:

Post a Comment