C Programming
Which of the following statements are true after execution of the program.void main(){ int a[10], i, *p; a[0] = 1; a[1] = 2; p = a; (*p)++;}

Compilation error
a[0] = 3
a[0] = 2
a[1] = 2
a[1] = 3

ANSWER DOWNLOAD EXAMIANS APP

C Programming
String concatenation means -

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

ANSWER DOWNLOAD EXAMIANS APP