Solved

Which of the Following Statements Is Correct with Respect to the TeleType

Question 24

Multiple Choice

Which of the following statements is correct with respect to the TeleType structure declaration?
Struct TeleType
{
Char name[30];
Char phoneNum[15];
Struct TeleType *nextaddr;
};


A) It is not valid in C
B) Can be used to create a linked list of TeleType structures
C) May be valid depending on the compiler
D) Generates a "self-referencing" compiler warning

Correct Answer:

verifed

Verified

Unlock this answer now
Get Access to more Verified Answers free of charge

Related Questions