191k views
2 votes
With Structs can you declare a default constructor with at least one parameter?

User UncleO
by
7.4k points

1 Answer

3 votes

Final answer:

Yes, with Structs, you can declare a default constructor with at least one parameter.

Step-by-step explanation:

Yes, with Structs, you can declare a default constructor with at least one parameter. In C++, a struct is essentially the same as a class, and it can have members, functions, and constructors. The default constructor is a special constructor that is automatically generated by the compiler if you do not define any constructor explicitly. By default, it has no parameters, but you can define a default constructor with parameters if needed.

User Rickless
by
8.6k points