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
Related Questions on Structure and Union
Which of the following can be a member of a structure?
A. Function
B. Another structure
C. Enumeration
D. All of the above

Join The Discussion