C Programming
Determine output:void main(){ int i=0, j=1, k=2, m; m = i++ || j++ || k++; printf("%d %d %d %d", m, i, j, k);}

None of these
0 1 2 2
0 1 2 3
1 1 2 3
1 1 2 2

ANSWER DOWNLOAD EXAMIANS APP

C Programming
String concatenation means -

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

ANSWER DOWNLOAD EXAMIANS APP