C - Structures,Unions - Discussion

You Are Here :: Home > C > Structures,Unions - Discussion

 



Q.

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
Explaination:

No Explanation



Discussion

Your Comments Goes here...
NameDiscussion