#include <string>
|
|
#include <iostream>
|
|
|
|
int main()
|
|
{
|
|
std::cout<<"size of string: "<<sizeof(std::string)<<std::endl;
|
|
}
|