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; }}

None of These
Error
three
zero

ANSWER DOWNLOAD EXAMIANS APP

C Programming
Use of functions

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

ANSWER DOWNLOAD EXAMIANS APP