answersLogoWhite

0


Best Answer

Depends on the programming language you are working with .....

Most use the symbol " or '

User Avatar

Wiki User

9y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What symbol is at the beginning and end of a string?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What symbol is used to mark the beginning and end of a string?

quatation


Which character in string is used to end the string?

Character zero (the byte with the decimal value zero) is sometimes used to end a string. But in other cases, the size of the string is stored at the beginning of the string, and there is no end-of-string character. This allows any character to be included in the string.


What does the infinity symbol mean?

The meaning of the infinity symbol is forever. The symbol it has no beginning and no end and is often used as a symbol of love and marriage.


What method of the string class removes all spaces from the beginning and end of a string object?

String a=" Suraj "; String t=a.trim(); this will remove all the leading and trailing white spaces


What symbol or character determines end of string?

In C programming language, a string is an array of characters which is always terminated by a NULL character: '\0'


How does the string trim work in Java?

The string trim works in Java by trimming white space from the beginning and end of a string. It cleans up the string and makes makes it neater for the users of the program.


A string of words with the letters pH in the word?

pH at the beginning of the word:phenomenonphasephalanxphloxphrasephilosophy (also in the middle)phobiapH in the middle of the word:autobiographicaldolphinelephantmorphemetelephonegraphiccalligraphysymphonyholographyclaustrophobicrephraseprophetpH at the end of the word:photograph (both beginning and end)autographgraphparagraphtelegraphpolygraphphonographpictographlithographmimeograph


What does a ring symbolizes in french revolution?

symbol of eternity. a ring has neither beginning nor end!


Why do you need a null terminating string at the end of each string?

to indicate end of string


What valentine symbol consists of graceful loops often in the shape of hearts with no beginning or end?

Love knot


How do you get the circumference of a cylinder with a string?

Wrap the string around the cylinder, mark where the end of the string touched itself, remove the string, and measure from the end of the string to the mark.


What would you use to terminate the string that is a character array?

If you use a declaration like:char arr[] = "blablabla";It already has a terminating symbol such as '\0'. As result your array has + 1 element. You can use '\0' to check that you have reached the end of a string.