c ++ sizeof (…)

#include <cstdlib>
#include <iostream>

int main(int argc, char *argv[])
{
   cout << "size of String " << sizeof(string );

   system("PAUSE");
   return EXIT_SUCCESS;
}

Resultado:

tamanho de String = 4

Isso significa que, desdesizeof(char) = 1 Byte (0 to 255), string só pode conter4&nbsp;personagens?