📝 请指出以下程序没有出现的错误 ``` struct node() { string s int k double d } int main() { struct n x; cout<<x.s; return …

📂 C++  ·  ⚡ 难度 1  ·  ❓ 单选题  ·  📖 基础题库
🏷️ 结构体
📖 基础题库

请指出以下程序没有出现的错误
```
struct node()
{
string s
int k
double d
}

int main() {
struct n x;
cout<<x.s;

return 0;
}
```