answersLogoWhite

0


Best Answer

" " <---- double quotes

User Avatar

Wiki User

15y ago
This answer is:
User Avatar
User Avatar

Brilliant Quotations

Lvl 1
10mo ago
Visit my profile and watch my channel to find a lot of videos about Quotes.

Add your answer:

Earn +20 pts
Q: What are double quotes?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

Can you use both single quotes and double quotes for strings in php?

Yes, you can use both single quotes (' ') and double quotes (&quot; &quot;) for defining strings in PHP. However, the choice between single and double quotes depends on whether you need to include variables or special characters within the string. Single quotes treat everything as a literal string, while double quotes allow for variable interpolation and escape sequences.


What is the difference between single quotes and double quotes?

in programming, single quotes are for characters, and double quotes are for string, but in php, javascript, html, css i don't see any difference between the two.


What is the difference between single quotes and double quotes in PHP?

There's not too much of a difference. Most people prefer using double quotes because of the fact that you can do this: &lt;?php $var2 = "Look at {$var1}!"; ?&gt; which you can't do the {} thing with single quotes. You would have to do &lt;?php $var = 'Look at '.$var1.'!'; ?&gt;


Why are double quotes used in C programming?

In C programming, double quotes are used to indicate String literal. char *s = "Hello World"; Where as single quotes are used to indicate a single character. char x = 'a';


Do single-quoted string literals have any characteristics difference from those of double-quoted string literals?

The literals with single quotes are Characters and can have a width of only one. Ex: 'y' or 'a' etc Strings cannot be declared using single quotes. They have to be declared with double quotes.


In PHP you can use both single quotes ( ' ' ) and double quotes ( ) for strings?

You can use single quotes $variable = 'string'; You can use double quotes $variable = "string"; You can use the Heredoc method $variable = &lt;&lt;&lt;EOT Very Long String EOT; And you can use the Nowdoc method (after PHP 5.3.0) $variable = &lt;&lt;&lt;'EOT' Very Long String EOT;


Are you allowed to make a question on Answers.com?

Yes, of course! Everyone is allowed to ask a question to Answers.com so long as it fits our site guidelines and Terms of Use. Visit the Related Link to the Help Center for information on how to ask a question.


Can you get a free quote from Chandler movers?

You can get quotes for movers from Chandler, Arizona. Many have instant quotes, yet you always want to double check with the company before believing quotes. Moving can often be misquoted.


How do you use string in C programming?

You put it between double quotes, "like this".


In linux What is the difference between single quotes and double quotes with respect to shell interpretation?

Double quotes allow changes to the text string, including: -- substitution for variable names, such as $x; -- expansion of special characters, such as '*' or '?' within file names; -- command execution within backticks, such as "You have `ls | wc -l` files" Single quotes enclose an explict string, and prevent most of these changes.


Why are there quotes around words in sentences?

It shows that somebody's talking. In addition, you can highlight a word or words by using double quotes if you were defining or explaining the term(s).


What are character constants?

A character constant is a single character in the host's character set, such as 'A', 'a', '0', '%', etc. Note the use of the single quotes instead of double quotes. (Double quotes are used for string constants, not character constants.) A character constant maps to a specific int (integer) value, but assuming anything about that relationship is non-portable.