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:

Verified
Correct Answer:
Verified
Q19: The following is an example of the
Q20: A stack requires a separate stack pointer
Q21: C provides the four functions, malloc(), calloc(),
Q22: In making requests for dynamic memory allocation,
Q23: Items are removed from a queue in
Q25: You should never forget to restore the
Q26: The indirection operator in C is _.<br>A)")"<br>B)-><br>C)&<br>D)*
Q27: The expression *emp.ptPay is equivalent to the
Q28: Deleting a structure in a linked list
Q29: The dot operator has a lower precedence