C program output

What will be the output of the below C language program: int main() { enum os {windows, unix, mac}; enum furnitures {doors, windows, table, chair, bed}; for(int i=doors; i<bed; i++) printf(“%d “, i); return 0; }

Output of a C language Program

What will be the output of the below code in C language: int main () { unsigned int cnt; for (cnt = 5; cnt >= 0; cnt–) printf(“%d “, cnt); }