C Programming
Consider the following code:void main(){ int a[5] = {6,8,3,9,0}, i=0; if(i != 0) { break; printf("%d", a[i]); } else printf("%d", a[i++]);}What is the output of the above program?

No output
8
6
Runtime error
Syntax error

ANSWER DOWNLOAD EXAMIANS APP

C Programming
C preprocessor

Takes care of include files
Acts before compilation
Takes care of macros
Takes care of conditional compilation
All of these

ANSWER DOWNLOAD EXAMIANS APP