Small tests i share because why not
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

6 行
117 B

  1. #include <string>
  2. #include <iostream>
  3. int main()
  4. {
  5. std::cout<<"size of string: "<<sizeof(std::string)<<std::endl;
  6. }