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
11
12
10
15

ANSWER DOWNLOAD EXAMIANS APP

C Programming
What is function?

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

ANSWER DOWNLOAD EXAMIANS APP

C Programming
C preprocessor

Acts before compilation
Takes care of include files
Takes care of conditional compilation
All of these
Takes care of macros

ANSWER DOWNLOAD EXAMIANS APP