Home » C Programming » Typedef » Question
  1. Which of the following is false about typedef?
    1. You cannot typedef a typedef with other term
    2. typedef follow scope rules
    3. typedef defined substitutes can be redefined again. (Eg: typedef char b; typedef int b;)
    4. All of above
    5. None of these
Correct Option: C

typedef defined substitutes can be redefined again. (Eg: typedef char b; typedef int b;)



Your comments will be displayed only after manual approval.