InterviewSolution
Saved Bookmarks
| 1. |
Which of the following is false about typedef?(a) typedef follow scope rules(b) typedef defined substitutes can be redefined again. (Eg: typedef char a; typedef int a;)(c) You cannot typedef a typedef with other term(d) All of the mentionedThis question was addressed to me during an internship interview.This question is from Typedefs topic in chapter Structures, Unions and Bit-Fields in C of C |
|
Answer» The correct CHOICE is (b) TYPEDEF DEFINED substitutes can be redefined again. (EG: typedef char a; typedef int a;) |
|