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));}

11
None of these
12
15
10

ANSWER DOWNLOAD EXAMIANS APP

C Programming
What is function?

Function is a block of statements that perform some specific task.
Function is a block of code that performs a specific task. It has a name and it is reusable.
All of these
Function is the fundamental modular unit. A function is usually designed to perform a specific task.

ANSWER DOWNLOAD EXAMIANS APP