Pages

NEWSLETTER

Join Over 1500 People Who get Latest MCQ in their Inbox. Its Delivered Automatically each time when We Publish in Mcq Bix.

➨ C Programming Structures, Unions, Enums

1. How will you free the allocated memory ?
A.remove(var-name);
B.free(var-name); ✔
C.delete(var-name);
D.dalloc(var-name);
- Answer&Explanation
Answer:Option B
Explanation :

No answer description available for this question.

2. What is the similarity between a structure, union and enumeration?
A.All of them let you define new values
B.All of them let you define new pointers
C.All of them let you define new data types ✔
D.All of them let you define new structures
- Answer&Explanation
Answer:Option C
Explanation :

No answer description available for this question.