Examveda

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


This Question Belongs to C Program >> Structure And Union

Join The Discussion

Related Questions on Structure and Union