main() { struct emp { char name[20]; int age; float sal; }; struct emp e={"Tiger"}; printf("\n%d%f"),e.age, e.sal; }
Answer & Explanation Option: [A]