C Programming
What will be the output of following program code?#include int main(void){ char p; char buf[10] = {1, 2, 3, 4, 5, 6, 9, 8}; p = (buf + 1)[5]; printf("%d", p); return 0;}

6
None of these
5
Error
9

ANSWER DOWNLOAD EXAMIANS APP

C Programming
String concatenation means -

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

ANSWER DOWNLOAD EXAMIANS APP