Hello,World!的大小(C++入门)

用sizeof函数获得“Hello, World!”所占用的空间大小。
2024-12-28 20:13:03
推荐回答(1个)
回答1:

#include 

using namespace std;

int main()
{

    char str[]= "Hello,World!";
    int size = sizeof(str);
   cout <   return 0;
}