Output of C++ program
What will be the output of below C++ program?
Find error in the C++ code
What is the Error (if any) in the below C++ code
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); }