Skip to content

Instantly share code, notes, and snippets.

@mishelashala
Last active March 28, 2016 14:27
Show Gist options
  • Save mishelashala/08cb459110c5c5c40e45 to your computer and use it in GitHub Desktop.
Save mishelashala/08cb459110c5c5c40e45 to your computer and use it in GitHub Desktop.
// incluyo iostream para entradas y salidas estándar
#include <iostream>
// incluyo string
#include <string>
int main () {
// declaro una variable de tipo string y le asigno "Hola mundo"
std::string str = "Hola mundo";
// redirecciono a la salida stándar el tamaño de str
std::cout << str.size << std::endl;
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment