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?

Runtime error
Syntax error
No output
6
8

ANSWER DOWNLOAD EXAMIANS APP

C Programming
What is the difference between a declaration and a definition of a variable?

Both can occur multiple times, but a declaration must occur first.
There is no difference between them.
Both can occur multiple times, but a definition must occur first.
A declaration occurs once, but a definition may occur many times.
A definition occurs once, but a declaration may occur many times.

ANSWER DOWNLOAD EXAMIANS APP