Login and Register ×
Check your Email for the OTP
Physics Heat
⚠ Report Question ✓ Question Verified
#include int main() { enum {ORANGE = 5, MANGO, BANANA = 4, PEACH}; printf("PEACH = %d\n", PEACH); }
Answer:c In enum, the value of constant is defined to the recent assignment from left. Output:
$ cc pgm1.c $ a.out PEACH = 5
Learn More MCQ Questions from Physics Heat
Heat is