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?

Syntax error
8
No output
Runtime error
6

ANSWER DOWNLOAD EXAMIANS APP

C Programming
String concatenation means -

Combining two strings.
Comparing the two strings to define the larger one.
Merging two strings.
Extracting a substring out of a string.
Partitioning the string into two strings.

ANSWER DOWNLOAD EXAMIANS APP

C Programming
What is function?

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.
All of these
Function is the fundamental modular unit. A function is usually designed to perform a specific task.

ANSWER DOWNLOAD EXAMIANS APP