小编the*_*owd的帖子

在函数调用中struct Node*和Node*有什么区别?

传递给function1和function2的区别是什么?

struct Node
{
    int data;
    struct Node *next;
};

void function1(struct Node *start)
{
    // ...
}

void function2(Node *start)
{
    // ...
}
Run Code Online (Sandbox Code Playgroud)

c++ struct scope declaration

2
推荐指数
2
解决办法
365
查看次数

标签 统计

c++ ×1

declaration ×1

scope ×1

struct ×1