find the output of this code

Banashree Patra

Banashree Patra

@banashree-patra-m0OJwR Oct 26, 2024
#include<stdio.h>
#define MUL(a,b) a*b
#define Pow(a) a*a
int main()
{
int a=3;
int b=2;
printf("Ans: %d\n", MUL (MUL(a+1,b), Pow(b+1)));
return 0;
}

Replies

Welcome, guest

Join CrazyEngineers to reply, ask questions, and participate in conversations.

CrazyEngineers powered by Jatra Community Platform