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
6
Syntax error
Runtime error
8

ANSWER DOWNLOAD EXAMIANS APP

C Programming
What is function?

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

ANSWER DOWNLOAD EXAMIANS APP