answersLogoWhite

0

That depends on the programming language. Most languages use the "+" sign, but a few use other signs. For example, PHP uses the dot.

User Avatar

Wiki User

11y ago

What else can I help you with?

Related Questions

A Write the algorithm to concatenate two given strings?

a write the algorithm to concatenate two given string


What is operator over loading?

Same operator can be used for different purposes like + can be used for addition of two integers and used for concatenate strings.


What does the plus in java mean?

It is used for addition - to add two numbers. Also, to concatenate two Strings (texts) - that is, to make a longer text from two shorter ones.


What is it called when you add up letters?

concatenate is the operation of joining two character strings end to end. For example, the strings "snow" and "ball" may be concatenated to give "snowball".


What is concatetion operation used in java?

"+" is the concatenation operator in Java. It can be used to concatenate two strings. Ex: String firstName = "John"; String lastName = "Morrison"; System.out.println(firstName + " " + lastName); The above code snippet would display John Morrison in the console.


How do you concatenate two strings without using strcat?

Example1:sprintf (to, "%s%", from1, from2);Example2:size_t len1= strlen (from1);memcpy (to, from1, len1);strcpy (to+len1, from2);


What is concatenate?

Concatenate in MS Excel and most of other tool is function to join text.


How do you concatenate a string?

v can concatenate two string by using a function like: select CONCAT( CONCAT('ename','e_mrks'),"name","marks" from student;


What to do with two peaces of normal string?

Whatever you want. Concatenate them, for example.


What is string concatenation in MS Access?

Concatenation is bringing things together. In a computer a string refers to a piece of text. Concatenating strings means bringing two or more strings together to form one. You could use this to form sentences. You could have a list of names of students who took exams and concatenate their name with another piece of text like " passed." or " failed." to show each students result in a more presentable way.Concatenation is bringing things together. In a computer a string refers to a piece of text. Concatenating strings means bringing two or more strings together to form one. You could use this to form sentences. You could have a list of names of students who took exams and concatenate their name with another piece of text like " passed." or " failed." to show each students result in a more presentable way.Concatenation is bringing things together. In a computer a string refers to a piece of text. Concatenating strings means bringing two or more strings together to form one. You could use this to form sentences. You could have a list of names of students who took exams and concatenate their name with another piece of text like " passed." or " failed." to show each students result in a more presentable way.Concatenation is bringing things together. In a computer a string refers to a piece of text. Concatenating strings means bringing two or more strings together to form one. You could use this to form sentences. You could have a list of names of students who took exams and concatenate their name with another piece of text like " passed." or " failed." to show each students result in a more presentable way.Concatenation is bringing things together. In a computer a string refers to a piece of text. Concatenating strings means bringing two or more strings together to form one. You could use this to form sentences. You could have a list of names of students who took exams and concatenate their name with another piece of text like " passed." or " failed." to show each students result in a more presentable way.Concatenation is bringing things together. In a computer a string refers to a piece of text. Concatenating strings means bringing two or more strings together to form one. You could use this to form sentences. You could have a list of names of students who took exams and concatenate their name with another piece of text like " passed." or " failed." to show each students result in a more presentable way.Concatenation is bringing things together. In a computer a string refers to a piece of text. Concatenating strings means bringing two or more strings together to form one. You could use this to form sentences. You could have a list of names of students who took exams and concatenate their name with another piece of text like " passed." or " failed." to show each students result in a more presentable way.Concatenation is bringing things together. In a computer a string refers to a piece of text. Concatenating strings means bringing two or more strings together to form one. You could use this to form sentences. You could have a list of names of students who took exams and concatenate their name with another piece of text like " passed." or " failed." to show each students result in a more presentable way.Concatenation is bringing things together. In a computer a string refers to a piece of text. Concatenating strings means bringing two or more strings together to form one. You could use this to form sentences. You could have a list of names of students who took exams and concatenate their name with another piece of text like " passed." or " failed." to show each students result in a more presentable way.Concatenation is bringing things together. In a computer a string refers to a piece of text. Concatenating strings means bringing two or more strings together to form one. You could use this to form sentences. You could have a list of names of students who took exams and concatenate their name with another piece of text like " passed." or " failed." to show each students result in a more presentable way.Concatenation is bringing things together. In a computer a string refers to a piece of text. Concatenating strings means bringing two or more strings together to form one. You could use this to form sentences. You could have a list of names of students who took exams and concatenate their name with another piece of text like " passed." or " failed." to show each students result in a more presentable way.


What is string equal method?

The equals method in Strings is used to check if two strings are the same.


How do you join the text in two cells together in a spreadsheet?

You can use the Concatenate function or the & operator. Both of the following will result in the same thing: =CONCATENATE("abc","def") ="abc" & "def"