C Programming
Determine Output:void main(){ int i=3; switch(i) { default: printf("zero"); case 1: printf("one"); break; case 2: printf("two"); break; case 3: printf("three"); break; }}

zero
None of These
Error
three

ANSWER DOWNLOAD EXAMIANS APP

C Programming
Use of functions

Makes the debugging task easier.
All of these
Helps to avoid repeated programming across programs.
Helps to avoid repeating a set of statements many times.
Enhances the logical clarity of the program.

ANSWER DOWNLOAD EXAMIANS APP