C Programming
Find the output of the following program.void main(){ int array[10]; int *i = &array[2], *j = &array[5]; int diff = j-i; printf("%d", diff);}

6
Garbage value
3
Error

ANSWER DOWNLOAD EXAMIANS APP

C Programming
String concatenation means -

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

ANSWER DOWNLOAD EXAMIANS APP