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
6
No output
8

ANSWER DOWNLOAD EXAMIANS APP

C Programming
What is function?

Function is a block of code that performs a specific task. It has a name and it is reusable.
All of these
Function is the fundamental modular unit. A function is usually designed to perform a specific task.
Function is a block of statements that perform some specific task.

ANSWER DOWNLOAD EXAMIANS APP