Ask Your Question
4

Can a struct be safely returned in C or C++?

asked 2023-07-18 21:26:12 +0000

djk gravatar image

edit retag flag offensive close merge delete

1 Answer

Sort by ยป oldest newest most voted
1

answered 2023-07-18 21:50:02 +0000

devzero gravatar image

Yes, a struct can be safely returned in C or C++. When a struct is returned from a function, it is usually passed by value unless it is explicitly passed by reference. This means that a copy of the struct is created and returned to the calling function. However, if the struct is large or contains pointers, it may be more efficient to pass a pointer to the struct instead of passing it by value. In either case, the struct can be safely returned.

edit flag offensive delete link more

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account. This space is reserved only for answers. If you would like to engage in a discussion, please instead post a comment under the question or an answer that you would like to discuss

Add Answer


Question Tools

Stats

Asked: 2023-07-18 21:26:12 +0000

Seen: 12 times

Last updated: Jul 18 '23