Home » C Programming » Structures » Question
  1. Which option is not possible for the following function call?
    func(&stru.num); //where stru is a variable of type struct and num is the member of the struct.
    1. Individual member can be passed by reference in a function
    2. Individual member’s address can be displayed in structure
    3. Compiler can access entire structure from the function
    4. All of above
    5. None of these
Correct Option: C

Compiler can access entire structure from the function



Your comments will be displayed only after manual approval.