Home » C Programming » Structures » Question
  1. Which of the following structure declaration doesn’t require pass-by-reference?
    1. struct temp{int a;};
      main(){}
      struct temp s;
    2. struct{int a;}s;
      main(){}
    3. struct temp{int a;};
      main(){
      struct temp s;
      }
    4. All of above
    5. None of these
Correct Option: E

None of these



Your comments will be displayed only after manual approval.