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

ANSWER DOWNLOAD EXAMIANS APP

C Programming
String concatenation means -

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

ANSWER DOWNLOAD EXAMIANS APP