C Programming
Determine Output:void main(){ int i=1, j=2; switch(i) { case 1: printf("GOOD"); break; case j: printf("BAD"); break; }}

GOOD
Compiler Error
None of These
GOOD BAD

ANSWER DOWNLOAD EXAMIANS APP

C Programming
Use of functions

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

ANSWER DOWNLOAD EXAMIANS APP