Which of the following structure declaration doesn't require pass-by-reference?
A.
struct{int a;}s;
main(){}B.
struct temp{int a;};
main(){
struct temp s;
}C.
struct temp{int a;};
main(){}
struct temp s;D. none of the mentioned
Answer: Option D

Join The Discussion