Warning: The magic method Slickr_Flickr_Plugin::__wakeup() must have public visibility in /home/kenbauer/public_kenscourses/tc101winter2015/wp-content/plugins/slickr-flickr/classes/class-plugin.php on line 152

Warning: Cannot modify header information - headers already sent by (output started at /home/kenbauer/public_kenscourses/tc101winter2015/wp-content/plugins/slickr-flickr/classes/class-plugin.php:152) in /home/kenbauer/public_kenscourses/tc101winter2015/wp-includes/rest-api/class-wp-rest-server.php on line 1831

Warning: Cannot modify header information - headers already sent by (output started at /home/kenbauer/public_kenscourses/tc101winter2015/wp-content/plugins/slickr-flickr/classes/class-plugin.php:152) in /home/kenbauer/public_kenscourses/tc101winter2015/wp-includes/rest-api/class-wp-rest-server.php on line 1831

Warning: Cannot modify header information - headers already sent by (output started at /home/kenbauer/public_kenscourses/tc101winter2015/wp-content/plugins/slickr-flickr/classes/class-plugin.php:152) in /home/kenbauer/public_kenscourses/tc101winter2015/wp-includes/rest-api/class-wp-rest-server.php on line 1831

Warning: Cannot modify header information - headers already sent by (output started at /home/kenbauer/public_kenscourses/tc101winter2015/wp-content/plugins/slickr-flickr/classes/class-plugin.php:152) in /home/kenbauer/public_kenscourses/tc101winter2015/wp-includes/rest-api/class-wp-rest-server.php on line 1831

Warning: Cannot modify header information - headers already sent by (output started at /home/kenbauer/public_kenscourses/tc101winter2015/wp-content/plugins/slickr-flickr/classes/class-plugin.php:152) in /home/kenbauer/public_kenscourses/tc101winter2015/wp-includes/rest-api/class-wp-rest-server.php on line 1831

Warning: Cannot modify header information - headers already sent by (output started at /home/kenbauer/public_kenscourses/tc101winter2015/wp-content/plugins/slickr-flickr/classes/class-plugin.php:152) in /home/kenbauer/public_kenscourses/tc101winter2015/wp-includes/rest-api/class-wp-rest-server.php on line 1831

Warning: Cannot modify header information - headers already sent by (output started at /home/kenbauer/public_kenscourses/tc101winter2015/wp-content/plugins/slickr-flickr/classes/class-plugin.php:152) in /home/kenbauer/public_kenscourses/tc101winter2015/wp-includes/rest-api/class-wp-rest-server.php on line 1831

Warning: Cannot modify header information - headers already sent by (output started at /home/kenbauer/public_kenscourses/tc101winter2015/wp-content/plugins/slickr-flickr/classes/class-plugin.php:152) in /home/kenbauer/public_kenscourses/tc101winter2015/wp-includes/rest-api/class-wp-rest-server.php on line 1831
{"id":14061,"date":"2015-05-06T17:37:43","date_gmt":"2015-05-06T22:37:43","guid":{"rendered":"https:\/\/oswaldouliel.withknown.com\/2015\/mastery25---creation-and-use-of-strings-in-c"},"modified":"2015-05-06T17:37:43","modified_gmt":"2015-05-06T22:37:43","slug":"mastery25-creation-and-use-of-strings-in-c","status":"publish","type":"post","link":"https:\/\/kenscourses.com\/tc101winter2015\/2015\/mastery25-creation-and-use-of-strings-in-c\/","title":{"rendered":"#Mastery25 – Creation and use of strings in C++"},"content":{"rendered":"
\n

Creaci\u00f3n y uso de strings en C++<\/h2>\n

Una de las utiliidades\u00a0de C++ es la existencia de “strings”\u009d (cadenas de texto) como parte del lenguaje.<\/p>\n

A continuaci\u00f3n veremos su manejo primero con un ejemplo sencillo:<\/p>\n

#e0e0e0; border-radius: 4px; background-color: #fcfcfc;\">#include<\/a> <\/span>string<\/span>><\/span> 
#include<\/a> <\/span>iostream<\/span>><\/span>
using namespace std<\/span>;<\/strong><\/span>
<\/span>
main<\/strong><\/span>(<\/strong><\/span>)<\/strong><\/span>
<\/span>{<\/strong><\/span>
string mensaje<\/span>;<\/strong><\/span>
mensaje <\/span>=<\/span> \"Hola\"<\/span>;<\/strong><\/span>
cout <\/span> mensaje<\/span>;<\/strong><\/span>
<\/span>}<\/strong><\/span> <\/span><\/span><\/span><\/span><\/pre>\n

\u00a0<\/p>\n

El manejo b\u00e1sico de las cadenas no presenta alguna\u00a0dificultad:<\/p>\n