Live Demo #include <stdio.h> #include <stdlib.h> int main() { union my_union { int i; float f; char c; }; union my_union* u; u = (union my_union*)malloc(sizeof(union my_union)); u->f = 20.60f; printf("%f", u->f); } Options− Garbage Value 20.600000 Syntax Error ...
1. Data Structure MCQ on Abstract Data Types The section contains Data Structure multiple choice questions and answers on arrays, stacks, queues, single linked lists, doubly and circular linked lists, stacks using arrays and linked lists, queues using arrays, stacks and linked lists, priority queu...