C Programming
What will be the output of the following program?#include#define prod(a,b) a*bvoid main(){ int x=3,y=4; printf("%d", prod(x+2,y-1));}

None of these
15
11
12
10

ANSWER DOWNLOAD EXAMIANS APP

C Programming
String concatenation means -

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

ANSWER DOWNLOAD EXAMIANS APP