Difference between revisions of "String"

From King Arthur's Gold Wiki
Jump to: navigation, search
(Created page with "String is used for storing strings of characters. <syntaxhighlight lang="cpp"> string s = "hello world" </syntaxhighlight>")
 
Line 1: Line 1:
String is used for storing strings of characters.
+
<onlyinclude>String is used for storing strings of characters.</onlyinclude>
  
 
<syntaxhighlight lang="cpp">
 
<syntaxhighlight lang="cpp">
 
string s = "hello world"
 
string s = "hello world"
 
</syntaxhighlight>
 
</syntaxhighlight>

Revision as of 22:42, 28 September 2012

String is used for storing strings of characters.

string s = "hello world"