この簡単なプログラムがあるとしましょう
#include <iostream>
using namespace std;
struct teststruct
{
int n;
long l;
string str;
};
int main()
{
teststruct wc;
wc.n = 1;
wc.l = 1.0;
wc.str = "hello world";
//cout << wc << endl; // what is wc by itself?
cout << &wc; // contains the memory address to the struct?
return 0;
}
私はwcに何があるのか理解しようとしていますか?変数名wcで構造体型を宣言すると; wcとは何ですか?メモリアドレスへのポインタですか?内容を確認しようとしましたが、コードでエラーが発生します。wcとは何かを明確にしていただけますか