how we can write the string concatenation program in java.
Answer Posted / kandavel
class conc
{
public static void main(String args[])
{
String a="kanda",b="Vel",c;
c=a+b;
System.out.println(" Concat String :"+c);
}}
//This program must save the file name is conc.java
| Is This Answer Correct ? | 17 Yes | 0 No |
Post New Answer View All Answers
What is a boolean structure?
What is preflight request?
Why is it called a string?
What are access specifiers in java ?
What are the different types of garbage collectors in java?
What is a ternary operator in java? What is an interface?
What does i ++ mean in Java?
Does printwriter create a file?
Does sprintf add a null terminator?
What is lambda programming?
explain different ways of using thread? : Java thread
Why java is considered as platform independent?
Explain the difference between abstract class and interface in java?
What is maximum size of arraylist in java?
Can a class have more than one object?