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?

6
Runtime error
8
No output
Syntax error

ANSWER DOWNLOAD EXAMIANS APP

C Programming
A preprocessor command

comes before the first executable statement
need not start on the first column
has # as the first character
need not start on a new line

ANSWER DOWNLOAD EXAMIANS APP