In this simple program, I will teach you how to concatenate a string in Java programming language using Eclipse IDE.
I am currently accepting programming work, IT projects, school and application development, programming projects, thesis and capstone projects, IT consulting work, computer tutorials, and web development work kindly contact me in the following email address for further details. If you want to advertise on my website kindly contact me also in my email address also. Thank you.
My email address is the following jakerpomperada@gmail.com, jakerpomperada@aol.com, and jakerpomperada@yahoo.com.
Program Listing
package testing_only;
public class testing {
public static void main(String[] args) {
// TODO Auto-generated method stub
String str1 = "Information "; String str2 = " Technology";
System.out.print( str1 + str2);
}
}